diff options
| author | Keng-Yu Lin <kengyu@canonical.com> | 2012-07-06 18:06:11 +0800 | 
|---|---|---|
| committer | Jiri Kosina <jkosina@suse.cz> | 2012-07-09 16:23:33 +0200 | 
| commit | 929578ab0339fe42bb3ceeaa2e6607189cddf70b (patch) | |
| tree | 07d63529b3feddfeb5788b6f8c1d1de93e435c1d /drivers/hid/hid-input.c | |
| parent | 25976a796cca22d6b0b2e9f821fa00fc4d98daa0 (diff) | |
| download | olio-linux-3.10-929578ab0339fe42bb3ceeaa2e6607189cddf70b.tar.xz olio-linux-3.10-929578ab0339fe42bb3ceeaa2e6607189cddf70b.zip  | |
HID: Add suport for the brightness control keys on HP keyboards
The keys are found on the keyboards bundled with HP All-In-One machines
with USB VID/PID of 04ca:004d and 04f2:1061.
Signed-off-by: Keng-Yu Lin <kengyu@canonical.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-input.c')
| -rw-r--r-- | drivers/hid/hid-input.c | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/hid/hid-input.c b/drivers/hid/hid-input.c index 132b0019365..879443bf410 100644 --- a/drivers/hid/hid-input.c +++ b/drivers/hid/hid-input.c @@ -834,6 +834,15 @@ static void hidinput_configure_usage(struct hid_input *hidinput, struct hid_fiel  		}  		break; +	case HID_UP_HPVENDOR2: +		set_bit(EV_REP, input->evbit); +		switch (usage->hid & HID_USAGE) { +		case 0x003: map_key_clear(KEY_BRIGHTNESSDOWN);	break; +		case 0x004: map_key_clear(KEY_BRIGHTNESSUP);	break; +		default:    goto ignore; +		} +		break; +  	case HID_UP_MSVENDOR:  		goto ignore;  |