diff options
Diffstat (limited to 'drivers/misc/thinkpad_acpi.h')
-rw-r--r-- | drivers/misc/thinkpad_acpi.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/misc/thinkpad_acpi.h b/drivers/misc/thinkpad_acpi.h index 529528c2fb5d..1b4cd167ebd2 100644 --- a/drivers/misc/thinkpad_acpi.h +++ b/drivers/misc/thinkpad_acpi.h | |||
@@ -97,11 +97,11 @@ static const char *str_supported(int is_supported); | |||
97 | #define IBM_PCI_HID "PNP0A03" | 97 | #define IBM_PCI_HID "PNP0A03" |
98 | 98 | ||
99 | /* ACPI helpers */ | 99 | /* ACPI helpers */ |
100 | static int acpi_evalf(acpi_handle handle, | 100 | static int __must_check acpi_evalf(acpi_handle handle, |
101 | void *res, char *method, char *fmt, ...); | 101 | void *res, char *method, char *fmt, ...); |
102 | static int acpi_ec_read(int i, u8 * p); | 102 | static int __must_check acpi_ec_read(int i, u8 * p); |
103 | static int acpi_ec_write(int i, u8 v); | 103 | static int __must_check acpi_ec_write(int i, u8 v); |
104 | static int _sta(acpi_handle handle); | 104 | static int __must_check _sta(acpi_handle handle); |
105 | 105 | ||
106 | /* ACPI handles */ | 106 | /* ACPI handles */ |
107 | static acpi_handle root_handle; /* root namespace */ | 107 | static acpi_handle root_handle; /* root namespace */ |