blob: f9b7dd4f607f9c7a4403cdead7f1cd40d28ea501 [file] [log] [blame]
Johnathon Harriscd9ec302010-01-21 14:36:52 +00001/*
Herton Ronaldo Krzesinski270fdc02011-03-16 14:13:53 -03002 * HID driver for Ortek PKB-1700/WKB-2000 (wireless keyboard + mouse trackpad).
Jiri Kosinae96838d2011-03-17 00:39:33 +01003 * Fixes LogicalMaximum error in HID report description.
Johnathon Harriscd9ec302010-01-21 14:36:52 +00004 *
5 * Copyright (c) 2010 Johnathon Harris <jmharris@gmail.com>
6 */
7
8/*
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the Free
11 * Software Foundation; either version 2 of the License, or (at your option)
12 * any later version.
13 */
14
15#include <linux/device.h>
16#include <linux/hid.h>
17#include <linux/module.h>
18
19#include "hid-ids.h"
20
Nikolai Kondrashov73e40082010-08-06 23:03:06 +040021static __u8 *ortek_report_fixup(struct hid_device *hdev, __u8 *rdesc,
22 unsigned int *rsize)
Johnathon Harriscd9ec302010-01-21 14:36:52 +000023{
Nikolai Kondrashov73e40082010-08-06 23:03:06 +040024 if (*rsize >= 56 && rdesc[54] == 0x25 && rdesc[55] == 0x01) {
Joe Perches4291ee32010-12-09 19:29:03 -080025 hid_info(hdev, "Fixing up Ortek WKB-2000 report descriptor\n");
Johnathon Harriscd9ec302010-01-21 14:36:52 +000026 rdesc[55] = 0x92;
27 }
Nikolai Kondrashov73e40082010-08-06 23:03:06 +040028 return rdesc;
Johnathon Harriscd9ec302010-01-21 14:36:52 +000029}
30
31static const struct hid_device_id ortek_devices[] = {
Herton Ronaldo Krzesinski270fdc02011-03-16 14:13:53 -030032 { HID_USB_DEVICE(USB_VENDOR_ID_ORTEK, USB_DEVICE_ID_ORTEK_PKB1700) },
Johnathon Harriscd9ec302010-01-21 14:36:52 +000033 { HID_USB_DEVICE(USB_VENDOR_ID_ORTEK, USB_DEVICE_ID_ORTEK_WKB2000) },
34 { }
35};
36MODULE_DEVICE_TABLE(hid, ortek_devices);
37
38static struct hid_driver ortek_driver = {
39 .name = "ortek",
40 .id_table = ortek_devices,
41 .report_fixup = ortek_report_fixup
42};
43
44static int __init ortek_init(void)
45{
46 return hid_register_driver(&ortek_driver);
47}
48
49static void __exit ortek_exit(void)
50{
51 hid_unregister_driver(&ortek_driver);
52}
53
54module_init(ortek_init);
55module_exit(ortek_exit);
56MODULE_LICENSE("GPL");