From: Tracey Dent <tdent48227@gmail.com>
To: dmitry.torokhov@gmail.com
Cc: jkosina@suse.cz, chatty@enac.fr, spbnick@gmail.com,
linux-input@vger.kernel.org, linux-kernel@vger.kernel.org,
Tracey Dent <tdent48227@gmail.com>
Subject: [PATCH 2/2] Drivers: hid: usbhid: Makefile: Cleaned up Makefile
Date: Sun, 7 Nov 2010 09:46:28 -0500 [thread overview]
Message-ID: <1289141188-1447-2-git-send-email-tdent48227@gmail.com> (raw)
In-Reply-To: <1289141188-1447-1-git-send-email-tdent48227@gmail.com>
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>
---
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 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
--
1.7.3.1.104.gc752e
next prev parent reply other threads:[~2010-11-07 14:46 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-07 14:46 [PATCH 1/2] Drivers: hid: Makefile: Cleaned up Makefile Tracey Dent
2010-11-07 14:46 ` Tracey Dent [this message]
2010-11-17 6:07 ` [PATCH 2/2] Drivers: hid: usbhid: " Américo Wang
2010-11-15 14:58 ` [PATCH 1/2] Drivers: hid: " Jiri Kosina
2010-11-17 3:28 ` Tracey Dent
2010-11-17 7:21 ` Dmitry Torokhov
2010-11-17 18:18 ` Tracey Dent
2010-11-17 6:05 ` Américo Wang
-- strict thread matches above, loose matches on Subject: below --
2010-11-06 19:07 Tracey Dent
2010-11-06 19:07 ` [PATCH 2/2] Drivers: hid: usbhid: " Tracey Dent
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1289141188-1447-2-git-send-email-tdent48227@gmail.com \
--to=tdent48227@gmail.com \
--cc=chatty@enac.fr \
--cc=dmitry.torokhov@gmail.com \
--cc=jkosina@suse.cz \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=spbnick@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).