From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tracey Dent Subject: [PATCH 2/2] Drivers: hid: usbhid: Makefile: Cleaned up Makefile Date: Sun, 7 Nov 2010 09:46:28 -0500 Message-ID: <1289141188-1447-2-git-send-email-tdent48227@gmail.com> References: <1289141188-1447-1-git-send-email-tdent48227@gmail.com> Return-path: Received: from mail-iw0-f174.google.com ([209.85.214.174]:59259 "EHLO mail-iw0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752938Ab0KGOqh (ORCPT ); Sun, 7 Nov 2010 09:46:37 -0500 In-Reply-To: <1289141188-1447-1-git-send-email-tdent48227@gmail.com> Sender: linux-input-owner@vger.kernel.org List-Id: linux-input@vger.kernel.org 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 Changed Makefile to use -y instead of -objs because -objs is deprecated and should now be switched. According to (documentation/kbuild/makefiles.txt). Signed-off-by: Tracey Dent --- 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