diff options
Diffstat (limited to 'drivers/platform/x86/acer-wmi.c')
-rw-r--r-- | drivers/platform/x86/acer-wmi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c index 934d861a3235..06f4eb7ab87e 100644 --- a/drivers/platform/x86/acer-wmi.c +++ b/drivers/platform/x86/acer-wmi.c | |||
@@ -335,7 +335,7 @@ static struct quirk_entry quirk_lenovo_ideapad_s205 = { | |||
335 | }; | 335 | }; |
336 | 336 | ||
337 | /* The Aspire One has a dummy ACPI-WMI interface - disable it */ | 337 | /* The Aspire One has a dummy ACPI-WMI interface - disable it */ |
338 | static struct dmi_system_id __devinitdata acer_blacklist[] = { | 338 | static struct dmi_system_id acer_blacklist[] = { |
339 | { | 339 | { |
340 | .ident = "Acer Aspire One (SSD)", | 340 | .ident = "Acer Aspire One (SSD)", |
341 | .matches = { | 341 | .matches = { |
@@ -1330,7 +1330,7 @@ static struct led_classdev mail_led = { | |||
1330 | .brightness_set = mail_led_set, | 1330 | .brightness_set = mail_led_set, |
1331 | }; | 1331 | }; |
1332 | 1332 | ||
1333 | static int __devinit acer_led_init(struct device *dev) | 1333 | static int acer_led_init(struct device *dev) |
1334 | { | 1334 | { |
1335 | return led_classdev_register(dev, &mail_led); | 1335 | return led_classdev_register(dev, &mail_led); |
1336 | } | 1336 | } |
@@ -1372,7 +1372,7 @@ static const struct backlight_ops acer_bl_ops = { | |||
1372 | .update_status = update_bl_status, | 1372 | .update_status = update_bl_status, |
1373 | }; | 1373 | }; |
1374 | 1374 | ||
1375 | static int __devinit acer_backlight_init(struct device *dev) | 1375 | static int acer_backlight_init(struct device *dev) |
1376 | { | 1376 | { |
1377 | struct backlight_properties props; | 1377 | struct backlight_properties props; |
1378 | struct backlight_device *bd; | 1378 | struct backlight_device *bd; |
@@ -1961,7 +1961,7 @@ static u32 get_wmid_devices(void) | |||
1961 | /* | 1961 | /* |
1962 | * Platform device | 1962 | * Platform device |
1963 | */ | 1963 | */ |
1964 | static int __devinit acer_platform_probe(struct platform_device *device) | 1964 | static int acer_platform_probe(struct platform_device *device) |
1965 | { | 1965 | { |
1966 | int err; | 1966 | int err; |
1967 | 1967 | ||