diff options
author | Tracey Dent <tdent48227@gmail.com> | 2010-11-18 10:42:30 +0100 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2010-11-18 10:42:44 +0100 |
commit | d47d612459300510215fc54bf1283f81710745df (patch) | |
tree | 21eaa6c49dfe976e513c0503a06ee2aa58323f8d /drivers/hid/Makefile | |
parent | 6021afcf19d8c6f5db6d11cadcfb6a22d0c28a48 (diff) | |
download | linux-3.10-d47d612459300510215fc54bf1283f81710745df.tar.gz linux-3.10-d47d612459300510215fc54bf1283f81710745df.tar.bz2 linux-3.10-d47d612459300510215fc54bf1283f81710745df.zip |
HID: 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/Makefile')
-rw-r--r-- | drivers/hid/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile index 86192f67d7c..b406269d1bc 100644 --- a/drivers/hid/Makefile +++ b/drivers/hid/Makefile @@ -1,7 +1,7 @@ # # Makefile for the HID driver # -hid-objs := hid-core.o hid-input.o +hid-y := hid-core.o hid-input.o ifdef CONFIG_DEBUG_FS hid-objs += hid-debug.o @@ -11,18 +11,18 @@ obj-$(CONFIG_HID) += hid.o hid-$(CONFIG_HIDRAW) += hidraw.o -hid-logitech-objs := hid-lg.o +hid-logitech-y := hid-lg.o ifdef CONFIG_LOGITECH_FF - hid-logitech-objs += hid-lgff.o + hid-logitech-y += hid-lgff.o endif ifdef CONFIG_LOGIRUMBLEPAD2_FF - hid-logitech-objs += hid-lg2ff.o + hid-logitech-y += hid-lg2ff.o endif ifdef CONFIG_LOGIG940_FF - hid-logitech-objs += hid-lg3ff.o + hid-logitech-y += hid-lg3ff.o endif ifdef CONFIG_LOGIWII_FF - hid-logitech-objs += hid-lg4ff.o + hid-logitech-y += hid-lg4ff.o endif obj-$(CONFIG_HID_3M_PCT) += hid-3m-pct.o |