summaryrefslogtreecommitdiff
path: root/thermal.h
diff options
context:
space:
mode:
Diffstat (limited to 'thermal.h')
-rw-r--r--thermal.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/thermal.h b/thermal.h
index 51db54d..49289f9 100644
--- a/thermal.h
+++ b/thermal.h
@@ -2,7 +2,7 @@
#ifndef _UAPI_LINUX_THERMAL_H
#define _UAPI_LINUX_THERMAL_H
-#define THERMAL_NAME_LENGTH20
+#define THERMAL_NAME_LENGTH 20
enum thermal_device_mode {
THERMAL_DEVICE_DISABLED = 0,
@@ -17,10 +17,10 @@ enum thermal_trip_type {
};
/* Adding event notification support elements */
-#define THERMAL_GENL_FAMILY_NAME "thermal"
-#define THERMAL_GENL_VERSION 0x01
-#define THERMAL_GENL_SAMPLING_GROUP_NAME "sampling"
-#define THERMAL_GENL_EVENT_GROUP_NAME "event"
+#define THERMAL_GENL_FAMILY_NAME "thermal"
+#define THERMAL_GENL_VERSION 0x01
+#define THERMAL_GENL_SAMPLING_GROUP_NAME "sampling"
+#define THERMAL_GENL_EVENT_GROUP_NAME "event"
/* Attributes of thermal_genl_family */
enum thermal_genl_attr {
@@ -59,19 +59,19 @@ enum thermal_genl_sampling {
/* Events of thermal_genl_family */
enum thermal_genl_event {
THERMAL_GENL_EVENT_UNSPEC,
- THERMAL_GENL_EVENT_TZ_CREATE,/* Thermal zone creation */
- THERMAL_GENL_EVENT_TZ_DELETE,/* Thermal zone deletion */
- THERMAL_GENL_EVENT_TZ_DISABLE,/* Thermal zone disabed */
- THERMAL_GENL_EVENT_TZ_ENABLE,/* Thermal zone enabled */
- THERMAL_GENL_EVENT_TZ_TRIP_HIGH,/* Trip point crossed the way up */
- THERMAL_GENL_EVENT_TZ_TRIP_LOW,/* Trip point crossed the way down */
- THERMAL_GENL_EVENT_TZ_TRIP_CHANGE,/* Trip point changed */
- THERMAL_GENL_EVENT_TZ_TRIP_ADD,/* Trip point added */
- THERMAL_GENL_EVENT_TZ_TRIP_DELETE,/* Trip point deleted */
- THERMAL_GENL_EVENT_TZ_CDEV_ADD,/* Cdev bound to the thermal zone */
- THERMAL_GENL_EVENT_TZ_CDEV_DELETE,/* Cdev unbound */
- THERMAL_GENL_EVENT_TZ_CDEV_UPDATE,/* Cdev state updated */
- THERMAL_GENL_EVENT_TZ_GOV_CHANGE,/* Governor policy changed */
+ THERMAL_GENL_EVENT_TZ_CREATE, /* Thermal zone creation */
+ THERMAL_GENL_EVENT_TZ_DELETE, /* Thermal zone deletion */
+ THERMAL_GENL_EVENT_TZ_DISABLE, /* Thermal zone disabed */
+ THERMAL_GENL_EVENT_TZ_ENABLE, /* Thermal zone enabled */
+ THERMAL_GENL_EVENT_TZ_TRIP_UP, /* Trip point crossed the way up */
+ THERMAL_GENL_EVENT_TZ_TRIP_DOWN, /* Trip point crossed the way down */
+ THERMAL_GENL_EVENT_TZ_TRIP_CHANGE, /* Trip point changed */
+ THERMAL_GENL_EVENT_TZ_TRIP_ADD, /* Trip point added */
+ THERMAL_GENL_EVENT_TZ_TRIP_DELETE, /* Trip point deleted */
+ THERMAL_GENL_EVENT_CDEV_ADD, /* Cdev bound to the thermal zone */
+ THERMAL_GENL_EVENT_CDEV_DELETE, /* Cdev unbound */
+ THERMAL_GENL_EVENT_CDEV_UPDATE, /* Cdev state updated */
+ THERMAL_GENL_EVENT_TZ_GOV_CHANGE, /* Governor policy changed */
__THERMAL_GENL_EVENT_MAX,
};
#define THERMAL_GENL_EVENT_MAX (__THERMAL_GENL_EVENT_MAX - 1)
@@ -79,12 +79,12 @@ enum thermal_genl_event {
/* Commands supported by the thermal_genl_family */
enum thermal_genl_cmd {
THERMAL_GENL_CMD_UNSPEC,
- THERMAL_GENL_CMD_TZ_GET,/* List thermal zones id */
- THERMAL_GENL_CMD_TZ_GET_TRIP,/* List of thermal trips */
- THERMAL_GENL_CMD_TZ_GET_TEMP,/* Get the thermal zone temperature */
- THERMAL_GENL_CMD_TZ_GET_GOV,/* Get the thermal zone governor */
- THERMAL_GENL_CMD_TZ_GET_MODE,/* Get the thermal zone mode */
- THERMAL_GENL_CMD_CDEV_GET,/* List of cdev id */
+ THERMAL_GENL_CMD_TZ_GET, /* List thermal zones id */
+ THERMAL_GENL_CMD_TZ_GET_TRIP, /* List of thermal trips */
+ THERMAL_GENL_CMD_TZ_GET_TEMP, /* Get the thermal zone temperature */
+ THERMAL_GENL_CMD_TZ_GET_GOV, /* Get the thermal zone governor */
+ THERMAL_GENL_CMD_TZ_GET_MODE, /* Get the thermal zone mode */
+ THERMAL_GENL_CMD_CDEV_GET, /* List of cdev id */
__THERMAL_GENL_CMD_MAX,
};
#define THERMAL_GENL_CMD_MAX (__THERMAL_GENL_CMD_MAX - 1)