diff options
author | Tracey Dent <tdent48227@gmail.com> | 2010-11-07 17:46:28 +0300 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2010-11-18 12:43:18 +0300 |
commit | e9229faf920aba47dd1ba6940b3ca138024543d3 (patch) | |
tree | 6f0958f83dcd4848edc31da4417de85a38a156da /drivers/hid/usbhid | |
parent | d47d612459300510215fc54bf1283f81710745df (diff) | |
download | linux-e9229faf920aba47dd1ba6940b3ca138024543d3.tar.xz |
HID: usbhid: Clean up makefile (-y instead of -objs)
Changed Makefile to use <modules>-y instead of <modules>-objs because -objs is
deprecated and should now be switched. According to (documentation/kbuild/makefiles.txt).
Signed-off-by: Tracey Dent <tdent48227@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/usbhid')
-rw-r--r-- | drivers/hid/usbhid/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/hid/usbhid/Makefile b/drivers/hid/usbhid/Makefile index 1329ecb37a1c..db3cf31c6fa1 100644 --- a/drivers/hid/usbhid/Makefile +++ b/drivers/hid/usbhid/Makefile @@ -3,15 +3,15 @@ # # Multipart objects. -usbhid-objs := hid-core.o hid-quirks.o +usbhid-y := hid-core.o hid-quirks.o # Optional parts of multipart objects. ifeq ($(CONFIG_USB_HIDDEV),y) - usbhid-objs += hiddev.o + usbhid-y += hiddev.o endif ifeq ($(CONFIG_HID_PID),y) - usbhid-objs += hid-pidff.o + usbhid-y += hid-pidff.o endif obj-$(CONFIG_USB_HID) += usbhid.o |