x86 platform drivers: hp-wmi Catch and log unkown event and key codes correctly

Signed-off-by: Thomas Renninger <trenn@suse.de>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
CC: linux-acpi@vger.kernel.org
CC: platform-driver-x86@vger.kernel.org
This commit is contained in:
Thomas Renninger 2010-05-21 16:18:10 +02:00 committed by Matthew Garrett
parent 751ae808f6
commit da9a79ba58

View file

@ -386,7 +386,9 @@ static void hp_wmi_notify(u32 value, void *context)
input_sync(hp_wmi_input_dev);
break;
}
}
} else
printk(KERN_INFO "HP WMI: Unknown key code - 0x%x\n",
key_code);
break;
case HPWMI_WIRELESS:
if (wifi_rfkill)
@ -403,8 +405,8 @@ static void hp_wmi_notify(u32 value, void *context)
hp_wmi_get_hw_state(HPWMI_WWAN));
break;
default:
printk(KERN_INFO "HP WMI: Unknown key pressed - %x\n",
eventcode);
printk(KERN_INFO "HP WMI: Unknown eventcode - %d\n",
eventcode);
break;
}
}