diff options
Diffstat (limited to 'include/linux/wmi.h')
-rw-r--r-- | include/linux/wmi.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/include/linux/wmi.h b/include/linux/wmi.h new file mode 100644 index 000000000000..29ed34b4dae1 --- /dev/null +++ b/include/linux/wmi.h | |||
@@ -0,0 +1,47 @@ | |||
1 | /* | ||
2 | * wmi.h - ACPI WMI interface | ||
3 | * | ||
4 | * Copyright (c) 2015 Andrew Lutomirski | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope that it will be useful, but | ||
11 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
13 | * General Public License for more details. | ||
14 | */ | ||
15 | |||
16 | #ifndef _LINUX_WMI_H | ||
17 | #define _LINUX_WMI_H | ||
18 | |||
19 | #include <linux/device.h> | ||
20 | #include <linux/acpi.h> | ||
21 | |||
22 | struct wmi_device { | ||
23 | struct device dev; | ||
24 | }; | ||
25 | |||
26 | struct wmi_device_id { | ||
27 | const char *guid_string; | ||
28 | }; | ||
29 | |||
30 | struct wmi_driver { | ||
31 | struct device_driver driver; | ||
32 | const struct wmi_device_id *id_table; | ||
33 | |||
34 | int (*probe)(struct wmi_device *wdev); | ||
35 | int (*remove)(struct wmi_device *wdev); | ||
36 | }; | ||
37 | |||
38 | extern int __must_check __wmi_driver_register(struct wmi_driver *driver, | ||
39 | struct module *owner); | ||
40 | extern void wmi_driver_unregister(struct wmi_driver *driver); | ||
41 | #define wmi_driver_register(driver) __wmi_driver_register((driver), THIS_MODULE) | ||
42 | |||
43 | #define module_wmi_driver(__wmi_driver) \ | ||
44 | module_driver(__wmi_driver, wmi_driver_register, \ | ||
45 | wmi_driver_unregister) | ||
46 | |||
47 | #endif | ||