aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid
diff options
context:
space:
mode:
authorTracey Dent <tdent48227@gmail.com>2010-11-07 09:46:28 -0500
committerJiri Kosina <jkosina@suse.cz>2010-11-18 10:43:18 +0100
commite9229faf920aba47dd1ba6940b3ca138024543d3 (patch)
tree6f0958f83dcd4848edc31da4417de85a38a156da /drivers/hid
parentd47d612459300510215fc54bf1283f81710745df (diff)
downloadkernel_samsung_smdk4412-e9229faf920aba47dd1ba6940b3ca138024543d3.zip
kernel_samsung_smdk4412-e9229faf920aba47dd1ba6940b3ca138024543d3.tar.gz
kernel_samsung_smdk4412-e9229faf920aba47dd1ba6940b3ca138024543d3.tar.bz2
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')
-rw-r--r--drivers/hid/usbhid/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/hid/usbhid/Makefile b/drivers/hid/usbhid/Makefile
index 1329ecb..db3cf31 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