diff options
Diffstat (limited to 'drivers/misc/thinkpad_acpi.h')
-rw-r--r-- | drivers/misc/thinkpad_acpi.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/misc/thinkpad_acpi.h b/drivers/misc/thinkpad_acpi.h index 84fdefe0d200..a9feb53c6d3c 100644 --- a/drivers/misc/thinkpad_acpi.h +++ b/drivers/misc/thinkpad_acpi.h | |||
@@ -30,6 +30,7 @@ | |||
30 | #include <linux/types.h> | 30 | #include <linux/types.h> |
31 | #include <linux/string.h> | 31 | #include <linux/string.h> |
32 | #include <linux/list.h> | 32 | #include <linux/list.h> |
33 | #include <linux/mutex.h> | ||
33 | 34 | ||
34 | #include <linux/proc_fs.h> | 35 | #include <linux/proc_fs.h> |
35 | #include <linux/sysfs.h> | 36 | #include <linux/sysfs.h> |
@@ -375,6 +376,8 @@ static enum fan_control_commands fan_control_commands; | |||
375 | static u8 fan_control_initial_status; | 376 | static u8 fan_control_initial_status; |
376 | static int fan_watchdog_maxinterval; | 377 | static int fan_watchdog_maxinterval; |
377 | 378 | ||
379 | struct mutex fan_mutex; | ||
380 | |||
378 | static acpi_handle fans_handle, gfan_handle, sfan_handle; | 381 | static acpi_handle fans_handle, gfan_handle, sfan_handle; |
379 | 382 | ||
380 | static int fan_init(struct ibm_init_struct *iibm); | 383 | static int fan_init(struct ibm_init_struct *iibm); |
@@ -403,6 +406,8 @@ static int fan_write_cmd_watchdog(const char *cmd, int *rc); | |||
403 | static int hotkey_orig_status; | 406 | static int hotkey_orig_status; |
404 | static int hotkey_orig_mask; | 407 | static int hotkey_orig_mask; |
405 | 408 | ||
409 | static struct mutex hotkey_mutex; | ||
410 | |||
406 | static int hotkey_init(struct ibm_init_struct *iibm); | 411 | static int hotkey_init(struct ibm_init_struct *iibm); |
407 | static void hotkey_exit(void); | 412 | static void hotkey_exit(void); |
408 | static int hotkey_get(int *status, int *mask); | 413 | static int hotkey_get(int *status, int *mask); |