mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 13:41:51 +00:00
5bd8d7071e
make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hid/hid-holtek-mouse.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hid/hid-ite.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hid/hid-kensington.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hid/hid-keytouch.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hid/hid-kye.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hid/hid-lcpower.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hid/hid-lenovo.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hid/hid-winwing.o Add the missing invocations of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> Link: https://patch.msgid.link/20240709-md-drivers-hid-v2-1-67faf2f2ec90@quicinc.com Signed-off-by: Benjamin Tissoires <bentiss@kernel.org>
54 lines
1.5 KiB
C
54 lines
1.5 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* HID driver for Keytouch devices not fully compliant with HID standard
|
|
*
|
|
* Copyright (c) 2011 Jiri Kosina
|
|
*/
|
|
|
|
/*
|
|
*/
|
|
|
|
#include <linux/device.h>
|
|
#include <linux/hid.h>
|
|
#include <linux/module.h>
|
|
|
|
#include "hid-ids.h"
|
|
|
|
/* Replace the broken report descriptor of this device with rather
|
|
* a default one */
|
|
static __u8 keytouch_fixed_rdesc[] = {
|
|
0x05, 0x01, 0x09, 0x06, 0xa1, 0x01, 0x05, 0x07, 0x19, 0xe0, 0x29, 0xe7, 0x15,
|
|
0x00, 0x25, 0x01, 0x75, 0x01, 0x95, 0x08, 0x81, 0x02, 0x95, 0x01, 0x75, 0x08,
|
|
0x81, 0x01, 0x95, 0x03, 0x75, 0x01, 0x05, 0x08, 0x19, 0x01, 0x29, 0x03, 0x91,
|
|
0x02, 0x95, 0x05, 0x75, 0x01, 0x91, 0x01, 0x95, 0x06, 0x75, 0x08, 0x15, 0x00,
|
|
0x26, 0xff, 0x00, 0x05, 0x07, 0x19, 0x00, 0x2a, 0xff, 0x00, 0x81, 0x00, 0xc0
|
|
};
|
|
|
|
static __u8 *keytouch_report_fixup(struct hid_device *hdev, __u8 *rdesc,
|
|
unsigned int *rsize)
|
|
{
|
|
hid_info(hdev, "fixing up Keytouch IEC report descriptor\n");
|
|
|
|
rdesc = keytouch_fixed_rdesc;
|
|
*rsize = sizeof(keytouch_fixed_rdesc);
|
|
|
|
return rdesc;
|
|
}
|
|
|
|
static const struct hid_device_id keytouch_devices[] = {
|
|
{ HID_USB_DEVICE(USB_VENDOR_ID_KEYTOUCH, USB_DEVICE_ID_KEYTOUCH_IEC) },
|
|
{ }
|
|
};
|
|
MODULE_DEVICE_TABLE(hid, keytouch_devices);
|
|
|
|
static struct hid_driver keytouch_driver = {
|
|
.name = "keytouch",
|
|
.id_table = keytouch_devices,
|
|
.report_fixup = keytouch_report_fixup,
|
|
};
|
|
module_hid_driver(keytouch_driver);
|
|
|
|
MODULE_DESCRIPTION("HID driver for Keytouch devices not fully compliant with HID standard");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_AUTHOR("Jiri Kosina");
|