2 * HID driver for Asus notebook built-in keyboard.
3 * Fixes small logical maximum to match usage maximum.
5 * Currently supported devices are:
9 * Copyright (c) 2016 Yusuke Fujimaki <usk.fujimaki@gmail.com>
11 * This module based on hid-ortek by
12 * Copyright (c) 2010 Johnathon Harris <jmharris@gmail.com>
13 * Copyright (c) 2011 Jiri Kosina
17 * This program is free software; you can redistribute it and/or modify it
18 * under the terms of the GNU General Public License as published by the Free
19 * Software Foundation; either version 2 of the License, or (at your option)
23 #include <linux/device.h>
24 #include <linux/hid.h>
25 #include <linux/module.h>
29 static __u8
*asus_report_fixup(struct hid_device
*hdev
, __u8
*rdesc
,
32 if (*rsize
>= 56 && rdesc
[54] == 0x25 && rdesc
[55] == 0x65) {
33 hid_info(hdev
, "Fixing up Asus notebook report descriptor\n");
39 static const struct hid_device_id asus_devices
[] = {
40 { HID_I2C_DEVICE(USB_VENDOR_ID_ASUSTEK
, USB_DEVICE_ID_ASUSTEK_NOTEBOOK_KEYBOARD
) },
43 MODULE_DEVICE_TABLE(hid
, asus_devices
);
45 static struct hid_driver asus_driver
= {
47 .id_table
= asus_devices
,
48 .report_fixup
= asus_report_fixup
50 module_hid_driver(asus_driver
);
52 MODULE_LICENSE("GPL");