diff options
author | Nikolai Kondrashov <spbnick@gmail.com> | 2019-02-10 05:13:50 -0500 |
---|---|---|
committer | Benjamin Tissoires <benjamin.tissoires@redhat.com> | 2019-02-21 06:00:53 -0500 |
commit | ff0c13d6d2edc9c4952c668f4503a51b5f101ab3 (patch) | |
tree | d34fa11d20bc01b0b5b0f9dec2964f121f01784f /drivers/hid/Makefile | |
parent | bf226cd3316a01d71eb74ea5736f6c8905ff5041 (diff) |
HID: uclogic: Extract report descriptors to a module
As hid-uclogic has a lot of report descriptors already and there's going
to be more, move them out of the driver code and into a separate module.
Signed-off-by: Nikolai Kondrashov <spbnick@gmail.com>
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Diffstat (limited to 'drivers/hid/Makefile')
-rw-r--r-- | drivers/hid/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile index a57e1088133a..fb75366ea776 100644 --- a/drivers/hid/Makefile +++ b/drivers/hid/Makefile | |||
@@ -108,6 +108,8 @@ obj-$(CONFIG_HID_THRUSTMASTER) += hid-tmff.o | |||
108 | obj-$(CONFIG_HID_TIVO) += hid-tivo.o | 108 | obj-$(CONFIG_HID_TIVO) += hid-tivo.o |
109 | obj-$(CONFIG_HID_TOPSEED) += hid-topseed.o | 109 | obj-$(CONFIG_HID_TOPSEED) += hid-topseed.o |
110 | obj-$(CONFIG_HID_TWINHAN) += hid-twinhan.o | 110 | obj-$(CONFIG_HID_TWINHAN) += hid-twinhan.o |
111 | hid-uclogic-objs := hid-uclogic-core.o \ | ||
112 | hid-uclogic-rdesc.o | ||
111 | obj-$(CONFIG_HID_UCLOGIC) += hid-uclogic.o | 113 | obj-$(CONFIG_HID_UCLOGIC) += hid-uclogic.o |
112 | obj-$(CONFIG_HID_UDRAW_PS3) += hid-udraw-ps3.o | 114 | obj-$(CONFIG_HID_UDRAW_PS3) += hid-udraw-ps3.o |
113 | obj-$(CONFIG_HID_LED) += hid-led.o | 115 | obj-$(CONFIG_HID_LED) += hid-led.o |