hp-wmi: Add missing __init annotations to initialization code
These functions are only called from other initialization routines, so can be marked __init, too. Signed-off-by: Mathias Krause <minipli@googlemail.com> Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
This commit is contained in:
committed by
Matthew Garrett
parent
8a1a970acd
commit
702ef54255
@@ -295,7 +295,7 @@ static int hp_wmi_tablet_state(void)
|
|||||||
return (state & 0x4) ? 1 : 0;
|
return (state & 0x4) ? 1 : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int hp_wmi_bios_2009_later(void)
|
static int __init hp_wmi_bios_2009_later(void)
|
||||||
{
|
{
|
||||||
int state = 0;
|
int state = 0;
|
||||||
int ret = hp_wmi_perform_query(HPWMI_FEATURE_QUERY, 0, &state,
|
int ret = hp_wmi_perform_query(HPWMI_FEATURE_QUERY, 0, &state,
|
||||||
@@ -704,7 +704,7 @@ static void cleanup_sysfs(struct platform_device *device)
|
|||||||
device_remove_file(&device->dev, &dev_attr_postcode);
|
device_remove_file(&device->dev, &dev_attr_postcode);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int hp_wmi_rfkill_setup(struct platform_device *device)
|
static int __init hp_wmi_rfkill_setup(struct platform_device *device)
|
||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
int wireless = 0;
|
int wireless = 0;
|
||||||
@@ -806,7 +806,7 @@ register_wifi_error:
|
|||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int hp_wmi_rfkill2_setup(struct platform_device *device)
|
static int __init hp_wmi_rfkill2_setup(struct platform_device *device)
|
||||||
{
|
{
|
||||||
int err, i;
|
int err, i;
|
||||||
struct bios_rfkill2_state state;
|
struct bios_rfkill2_state state;
|
||||||
|
Reference in New Issue
Block a user