diff options
author | Benjamin Tissoires <benjamin.tissoires@redhat.com> | 2017-11-20 11:48:41 +0100 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2017-11-21 11:14:48 +0100 |
commit | d5d3e202753cc023100a854788a4ad83d7c2821a (patch) | |
tree | 6eef3c995780949d8301f909023ceb8a1d91c729 /drivers/hid/Makefile | |
parent | 20df15783a44a289aaa8c8f83b3f715f9040c9c2 (diff) | |
download | linux-d5d3e202753cc023100a854788a4ad83d7c2821a.tar.gz |
HID: core: move the dynamic quirks handling in core
usbhid has a list of dynamic quirks in addition to a list of static quirks.
There is not much USB specific in that, so move this part of the module
in core so we can have one central place for quirks.
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/Makefile')
-rw-r--r-- | drivers/hid/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile index 235bd2a7b333..2be460d44c69 100644 --- a/drivers/hid/Makefile +++ b/drivers/hid/Makefile @@ -2,7 +2,7 @@ # # Makefile for the HID driver # -hid-y := hid-core.o hid-input.o +hid-y := hid-core.o hid-input.o hid-quirks.o hid-$(CONFIG_DEBUG_FS) += hid-debug.o obj-$(CONFIG_HID) += hid.o |