diff options
Diffstat (limited to 'libc/kernel/common/linux/android_power.h')
-rw-r--r-- | libc/kernel/common/linux/android_power.h | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/libc/kernel/common/linux/android_power.h b/libc/kernel/common/linux/android_power.h index 2e9032176..946dd0b95 100644 --- a/libc/kernel/common/linux/android_power.h +++ b/libc/kernel/common/linux/android_power.h @@ -7,49 +7,58 @@ *** structures, and macros generated from the original header, and thus, *** contains no copyrightable information. *** + *** To edit the content of this header, modify the corresponding + *** source file (e.g. under external/kernel-headers/original/) then + *** run bionic/libc/kernel/tools/update_all.py + *** + *** Any manual change here will be lost the next time this script will + *** be run. You've been warned! + *** **************************************************************************** ****************************************************************************/ #ifndef _LINUX_ANDROID_POWER_H #define _LINUX_ANDROID_POWER_H - #include <linux/list.h> - typedef struct +/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ { struct list_head link; int lock_count; int flags; +/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ const char *name; int expires; } android_suspend_lock_t; - #define ANDROID_SUSPEND_LOCK_FLAG_COUNTED (1U << 0) +/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #define ANDROID_SUSPEND_LOCK_FLAG_USER_READABLE (1U << 1) #define ANDROID_SUSPEND_LOCK_FLAG_USER_SET (1U << 2) #define ANDROID_SUSPEND_LOCK_FLAG_USER_CLEAR (1U << 3) #define ANDROID_SUSPEND_LOCK_FLAG_USER_INC (1U << 4) +/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #define ANDROID_SUSPEND_LOCK_FLAG_USER_DEC (1U << 5) #define ANDROID_SUSPEND_LOCK_FLAG_USER_VISIBLE_MASK (0x1fU << 1) #define ANDROID_SUSPEND_LOCK_AUTO_EXPIRE (1U << 6) - typedef struct android_early_suspend android_early_suspend_t; +/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ struct android_early_suspend { struct list_head link; int level; +/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ void (*suspend)(android_early_suspend_t *h); void (*resume)(android_early_suspend_t *h); }; - typedef enum { +/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ ANDROID_CHARGING_STATE_UNKNOWN, ANDROID_CHARGING_STATE_DISCHARGE, ANDROID_CHARGING_STATE_MAINTAIN, ANDROID_CHARGING_STATE_SLOW, +/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ ANDROID_CHARGING_STATE_NORMAL, ANDROID_CHARGING_STATE_FAST, ANDROID_CHARGING_STATE_OVERHEAT } android_charging_state_t; - +/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #endif - |