2 * HID driver for Elecom BM084 (bluetooth mouse).
3 * Removes a non-existing horizontal wheel from
5 * (This module is based on "hid-ortek".)
7 * Copyright (c) 2010 Richard Nauber <Richard.Nauber@gmail.com>
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
13 * Software Foundation; either version 2 of the License, or (at your option)
17 #include <linux/device.h>
18 #include <linux/hid.h>
19 #include <linux/module.h>
23 static __u8
*elecom_report_fixup(struct hid_device
*hdev
, __u8
*rdesc
,
26 if (*rsize
>= 48 && rdesc
[46] == 0x05 && rdesc
[47] == 0x0c) {
27 hid_info(hdev
, "Fixing up Elecom BM084 report descriptor\n");
33 static const struct hid_device_id elecom_devices
[] = {
34 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_ELECOM
, USB_DEVICE_ID_ELECOM_BM084
)},
37 MODULE_DEVICE_TABLE(hid
, elecom_devices
);
39 static struct hid_driver elecom_driver
= {
41 .id_table
= elecom_devices
,
42 .report_fixup
= elecom_report_fixup
44 module_hid_driver(elecom_driver
);
46 MODULE_LICENSE("GPL");