Commit df6dd1b3 authored by Jean Delvare's avatar Jean Delvare Committed by Darren Hart

thinkpad_acpi: Fix warning for static not at beginning

Fix the following warning:

warning: "static" is not at beginning of declaration
 void static hotkey_mask_warn_incomplete_mask(void)
 ^
Signed-off-by: default avatarJean Delvare <jdelvare@suse.de>
Cc: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Cc: Darren Hart <dvhart@infradead.org>
Signed-off-by: default avatarDarren Hart <dvhart@linux.intel.com>
parent 9b071a43
...@@ -2115,7 +2115,7 @@ static int hotkey_mask_get(void) ...@@ -2115,7 +2115,7 @@ static int hotkey_mask_get(void)
return 0; return 0;
} }
void static hotkey_mask_warn_incomplete_mask(void) static void hotkey_mask_warn_incomplete_mask(void)
{ {
/* log only what the user can fix... */ /* log only what the user can fix... */
const u32 wantedmask = hotkey_driver_mask & const u32 wantedmask = hotkey_driver_mask &
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment