diff options
author | Ilya Skriblovsky <ilyaskriblovsky@gmail.com> | 2021-09-19 14:12:36 +0300 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2021-09-22 11:53:07 +0200 |
commit | 95157723dc9e07f27507e8d36ea7e5c543b5f80d (patch) | |
tree | 13d6449d10d66abba191d16a1cff055dba87ec74 /drivers/hid/Makefile | |
parent | 83ec91697412ae64d25dcca74597ed03029aa00d (diff) | |
download | linux-95157723dc9e07f27507e8d36ea7e5c543b5f80d.tar.bz2 |
HID: Add support for side buttons of Xiaomi Mi Dual Mode Wireless Mouse Silent
This patch enables side-buttons of Xiaomi Bluetooth mouse (specifically Xiaomi
Mi Dual Mode Wireless Mouse Silent Edition).
The mouse sends invalid button count in its HID Report Descriptor and this
patch just replaces its descriptor with corrected one. With this driver side
buttons work as expected acting like Back/Forward buttons.
Signed-off-by: Ilya Skriblovsky <ilyaskriblovsky@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/Makefile')
-rw-r--r-- | drivers/hid/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile index e29efcb1c040..e43495465793 100644 --- a/drivers/hid/Makefile +++ b/drivers/hid/Makefile @@ -125,6 +125,7 @@ hid-uclogic-objs := hid-uclogic-core.o \ obj-$(CONFIG_HID_UCLOGIC) += hid-uclogic.o obj-$(CONFIG_HID_UDRAW_PS3) += hid-udraw-ps3.o obj-$(CONFIG_HID_LED) += hid-led.o +obj-$(CONFIG_HID_XIAOMI) += hid-xiaomi.o obj-$(CONFIG_HID_XINMO) += hid-xinmo.o obj-$(CONFIG_HID_ZEROPLUS) += hid-zpff.o obj-$(CONFIG_HID_ZYDACRON) += hid-zydacron.o |