d5d3e20275
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>
14 lines
291 B
Makefile
14 lines
291 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the USB input drivers
|
|
#
|
|
|
|
usbhid-y := hid-core.o
|
|
usbhid-$(CONFIG_USB_HIDDEV) += hiddev.o
|
|
usbhid-$(CONFIG_HID_PID) += hid-pidff.o
|
|
|
|
obj-$(CONFIG_USB_HID) += usbhid.o
|
|
obj-$(CONFIG_USB_KBD) += usbkbd.o
|
|
obj-$(CONFIG_USB_MOUSE) += usbmouse.o
|
|
|