mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-07 15:15:29 +00:00
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: Jean Delvare <jdelvare@suse.de> Cc: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> Cc: Darren Hart <dvhart@infradead.org> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
This commit is contained in:
parent
9b071a4355
commit
df6dd1b35b
1 changed files with 1 additions and 1 deletions
|
@ -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 &
|
||||||
|
|
Loading…
Add table
Reference in a new issue