diff options
author | Sunguk Lee | 2017-05-14 04:24:52 +0900 |
---|---|---|
committer | Sunguk Lee | 2017-05-14 04:24:52 +0900 |
commit | f83c6856be291f6986d3b18203c0f44cc9438ff0 (patch) | |
tree | b7daed44b3b4c2ccbceeb166d8328d68e7e9818a /include | |
parent | Fix callback functions and add some enums (diff) | |
download | vds-libraries-f83c6856be291f6986d3b18203c0f44cc9438ff0.tar.gz |
Fix code style of power.h
- softtab to hardtab
- missing semicolon
Diffstat (limited to 'include')
-rw-r--r-- | include/user/power.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/include/user/power.h b/include/user/power.h index dc2a928..02ba7ff 100644 --- a/include/user/power.h +++ b/include/user/power.h @@ -8,14 +8,15 @@ extern "C" { #endif -enum{ - /*indicates the unit is suspending, seems to occur due to inactivity*/ - SCE_POWER_CB_SUSPENDING = 0x00010000, - /*indicates the unit is resuming from suspend mode*/ - SCE_POWER_CB_RESUMING = 0x00020000, - /*indicates the unit has finish resuming from suspend mode*/ - SCE_POWER_CB_RESUME_COMPLETE = 0x00040000 -} +enum { + /*indicates the unit is suspending, seems to occur due to inactivity*/ + SCE_POWER_CB_SUSPENDING = 0x00010000, + /*indicates the unit is resuming from suspend mode*/ + SCE_POWER_CB_RESUMING = 0x00020000, + /*indicates the unit has finish resuming from suspend mode*/ + SCE_POWER_CB_RESUME_COMPLETE = 0x00040000 +}; + /* Callbacks */ /** Callback function prototype */ |