diff options
author | Corentin Chary <corentincj@iksaif.net> | 2011-02-06 07:28:34 -0500 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2011-03-28 06:05:17 -0400 |
commit | 33e0e6fed04dc6067562c65e3e6d551dc0eb11fc (patch) | |
tree | 6e5f9cf2605af25fa59e8311d4e033677175e081 /drivers/platform/x86/eeepc-wmi.c | |
parent | a04ce290bffe6b39edf18bac0fdb302503a53a4e (diff) |
eeepc-wmi: reorder defines
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers/platform/x86/eeepc-wmi.c')
-rw-r--r-- | drivers/platform/x86/eeepc-wmi.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/platform/x86/eeepc-wmi.c b/drivers/platform/x86/eeepc-wmi.c index 1fc191bc0a3f..aa9e1d1719da 100644 --- a/drivers/platform/x86/eeepc-wmi.c +++ b/drivers/platform/x86/eeepc-wmi.c | |||
@@ -60,20 +60,20 @@ MODULE_LICENSE("GPL"); | |||
60 | MODULE_ALIAS("wmi:"EEEPC_WMI_EVENT_GUID); | 60 | MODULE_ALIAS("wmi:"EEEPC_WMI_EVENT_GUID); |
61 | MODULE_ALIAS("wmi:"EEEPC_WMI_MGMT_GUID); | 61 | MODULE_ALIAS("wmi:"EEEPC_WMI_MGMT_GUID); |
62 | 62 | ||
63 | #define NOTIFY_BRNUP_MIN 0x11 | 63 | #define NOTIFY_BRNUP_MIN 0x11 |
64 | #define NOTIFY_BRNUP_MAX 0x1f | 64 | #define NOTIFY_BRNUP_MAX 0x1f |
65 | #define NOTIFY_BRNDOWN_MIN 0x20 | 65 | #define NOTIFY_BRNDOWN_MIN 0x20 |
66 | #define NOTIFY_BRNDOWN_MAX 0x2e | 66 | #define NOTIFY_BRNDOWN_MAX 0x2e |
67 | 67 | ||
68 | #define EEEPC_WMI_METHODID_DEVS 0x53564544 | 68 | #define EEEPC_WMI_METHODID_DSTS 0x53544344 |
69 | #define EEEPC_WMI_METHODID_DSTS 0x53544344 | 69 | #define EEEPC_WMI_METHODID_DEVS 0x53564544 |
70 | #define EEEPC_WMI_METHODID_CFVS 0x53564643 | 70 | #define EEEPC_WMI_METHODID_CFVS 0x53564643 |
71 | 71 | ||
72 | #define EEEPC_WMI_DEVID_BACKLIGHT 0x00050012 | ||
73 | #define EEEPC_WMI_DEVID_TPDLED 0x00100011 | ||
74 | #define EEEPC_WMI_DEVID_WLAN 0x00010011 | 72 | #define EEEPC_WMI_DEVID_WLAN 0x00010011 |
75 | #define EEEPC_WMI_DEVID_BLUETOOTH 0x00010013 | 73 | #define EEEPC_WMI_DEVID_BLUETOOTH 0x00010013 |
76 | #define EEEPC_WMI_DEVID_WWAN3G 0x00010019 | 74 | #define EEEPC_WMI_DEVID_WWAN3G 0x00010019 |
75 | #define EEEPC_WMI_DEVID_BACKLIGHT 0x00050012 | ||
76 | #define EEEPC_WMI_DEVID_TPDLED 0x00100011 | ||
77 | 77 | ||
78 | static bool hotplug_wireless; | 78 | static bool hotplug_wireless; |
79 | 79 | ||