|
@@ -89,8 +89,9 @@
|
|
* REGULATION_OUT Regulator output is out of regulation.
|
|
* REGULATION_OUT Regulator output is out of regulation.
|
|
* FAIL Regulator output has failed.
|
|
* FAIL Regulator output has failed.
|
|
* OVER_TEMP Regulator over temp.
|
|
* OVER_TEMP Regulator over temp.
|
|
- * FORCE_DISABLE Regulator shut down by software.
|
|
|
|
|
|
+ * FORCE_DISABLE Regulator forcibly shut down by software.
|
|
* VOLTAGE_CHANGE Regulator voltage changed.
|
|
* VOLTAGE_CHANGE Regulator voltage changed.
|
|
|
|
+ * DISABLE Regulator was disabled.
|
|
*
|
|
*
|
|
* NOTE: These events can be OR'ed together when passed into handler.
|
|
* NOTE: These events can be OR'ed together when passed into handler.
|
|
*/
|
|
*/
|
|
@@ -102,6 +103,7 @@
|
|
#define REGULATOR_EVENT_OVER_TEMP 0x10
|
|
#define REGULATOR_EVENT_OVER_TEMP 0x10
|
|
#define REGULATOR_EVENT_FORCE_DISABLE 0x20
|
|
#define REGULATOR_EVENT_FORCE_DISABLE 0x20
|
|
#define REGULATOR_EVENT_VOLTAGE_CHANGE 0x40
|
|
#define REGULATOR_EVENT_VOLTAGE_CHANGE 0x40
|
|
|
|
+#define REGULATOR_EVENT_DISABLE 0x80
|
|
|
|
|
|
struct regulator;
|
|
struct regulator;
|
|
|
|
|