Blame view

kernel/linux-rt-4.4.41/include/uapi/linux/thermal.h 876 Bytes
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  #ifndef _UAPI_LINUX_THERMAL_H
  #define _UAPI_LINUX_THERMAL_H
  
  #define THERMAL_NAME_LENGTH	20
  
  /* Adding event notification support elements */
  #define THERMAL_GENL_FAMILY_NAME                "thermal_event"
  #define THERMAL_GENL_VERSION                    0x01
  #define THERMAL_GENL_MCAST_GROUP_NAME           "thermal_mc_grp"
  
  /* Events supported by Thermal Netlink */
  enum events {
  	THERMAL_AUX0,
  	THERMAL_AUX1,
  	THERMAL_CRITICAL,
  	THERMAL_DEV_FAULT,
  };
  
  /* attributes of thermal_genl_family */
  enum {
  	THERMAL_GENL_ATTR_UNSPEC,
  	THERMAL_GENL_ATTR_EVENT,
  	__THERMAL_GENL_ATTR_MAX,
  };
  #define THERMAL_GENL_ATTR_MAX (__THERMAL_GENL_ATTR_MAX - 1)
  
  /* commands supported by the thermal_genl_family */
  enum {
  	THERMAL_GENL_CMD_UNSPEC,
  	THERMAL_GENL_CMD_EVENT,
  	__THERMAL_GENL_CMD_MAX,
  };
  #define THERMAL_GENL_CMD_MAX (__THERMAL_GENL_CMD_MAX - 1)
  
  #endif /* _UAPI_LINUX_THERMAL_H */