Skip to content

Commit

Permalink
msi-wmi: replace one-condition switch-case with if statement
Browse files Browse the repository at this point in the history
Signed-off-by: Anisse Astier <anisse@astier.eu>
Signed-off-by: Len Brown <len.brown@intel.com>
  • Loading branch information
Anisse Astier authored and Len Brown committed Dec 16, 2009
1 parent 977f9b9 commit d607af9
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions drivers/platform/x86/msi-wmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -243,14 +243,10 @@ static void msi_wmi_notify(u32 value, void *context)
}
key->last_pressed = cur;

switch (key->type) {
case KE_KEY:
/* Brightness is served via acpi video driver */
if (!backlight &&
(key->keycode == KEY_BRIGHTNESSUP ||
key->keycode == KEY_BRIGHTNESSDOWN))
break;

if (key->type == KE_KEY &&
/* Brightness is served via acpi video driver */
(backlight || (key->keycode != KEY_BRIGHTNESSUP &&
key->keycode != KEY_BRIGHTNESSDOWN))) {
dprintk("Send key: 0x%X - "
"Input layer keycode: %d\n", key->code,
key->keycode);
Expand All @@ -260,7 +256,6 @@ static void msi_wmi_notify(u32 value, void *context)
input_report_key(msi_wmi_input_dev,
key->keycode, 0);
input_sync(msi_wmi_input_dev);
break;
}
} else
printk(KERN_INFO "Unknown key pressed - %x\n",
Expand Down

0 comments on commit d607af9

Please sign in to comment.