diff options
author | Corentin Chary <corentincj@iksaif.net> | 2009-11-28 10:35:37 +0100 |
---|---|---|
committer | Corentin Chary <corentincj@iksaif.net> | 2010-02-28 19:35:09 +0100 |
commit | 619d8b1187f2e13f6f848b1b2a4d83c2c9e2a140 (patch) | |
tree | a3108fc715f31e57baf8480baaa6006abe6f7315 /drivers/platform | |
parent | 91687cc89af4c447483ec65097809c38c8622639 (diff) | |
download | blackbird-op-linux-619d8b1187f2e13f6f848b1b2a4d83c2c9e2a140.tar.gz blackbird-op-linux-619d8b1187f2e13f6f848b1b2a4d83c2c9e2a140.zip |
asus-laptop: remove unecessary hotk != NULL check
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/asus-laptop.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/platform/x86/asus-laptop.c b/drivers/platform/x86/asus-laptop.c index 5889bda5a03b..74463a07d48b 100644 --- a/drivers/platform/x86/asus-laptop.c +++ b/drivers/platform/x86/asus-laptop.c @@ -941,10 +941,6 @@ static void asus_hotk_notify(struct acpi_device *device, u32 event) static struct key_entry *key; u16 count; - /* TODO Find a better way to handle events count. */ - if (!hotk) - return; - /* * We need to tell the backlight device when the backlight power is * switched @@ -957,6 +953,7 @@ static void asus_hotk_notify(struct acpi_device *device, u32 event) lcd_blank(FB_BLANK_POWERDOWN); } + /* TODO Find a better way to handle events count. */ count = hotk->event_count[event % 128]++; acpi_bus_generate_proc_event(hotk->device, event, count); acpi_bus_generate_netlink_event(hotk->device->pnp.device_class, |