aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/misc/thinkpad_acpi.h8
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 */
100static int acpi_evalf(acpi_handle handle, 100static int __must_check acpi_evalf(acpi_handle handle,
101 void *res, char *method, char *fmt, ...); 101 void *res, char *method, char *fmt, ...);
102static int acpi_ec_read(int i, u8 * p); 102static int __must_check acpi_ec_read(int i, u8 * p);
103static int acpi_ec_write(int i, u8 v); 103static int __must_check acpi_ec_write(int i, u8 v);
104static int _sta(acpi_handle handle); 104static int __must_check _sta(acpi_handle handle);
105 105
106/* ACPI handles */ 106/* ACPI handles */
107static acpi_handle root_handle; /* root namespace */ 107static acpi_handle root_handle; /* root namespace */