Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753449Ab0KFTHf (ORCPT ); Sat, 6 Nov 2010 15:07:35 -0400 Received: from mail-iw0-f174.google.com ([209.85.214.174]:36075 "EHLO mail-iw0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752901Ab0KFTHc (ORCPT ); Sat, 6 Nov 2010 15:07:32 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=pCXfRwpyzKjURQ4XHhr5csx1r7cf5Q9FUxUpvO49H3EMdtC5hEJ44cL8tosDTFWZNk 50EooWjTWMzz6ljHzW41iG2BlqfVCibpbbUF/aq9jgc3wmG+U153OdYxbIpHgV9wdGh4 FTmBU9dun8y0o2C0uojJgW/OmQqvon2698GEw= From: Tracey Dent To: jkosina@suse.cz Cc: linux-kernel@vger.kernel.org, linux-input@vger.kernel.org, spbnick@gmail.com, dtor@mail.ru, chatty@enac.fr, Tracey Dent Subject: [PATCH 2/2] Drivers: hid: usbhid: Makefile: Cleaned up Makefile Date: Sat, 6 Nov 2010 15:07:44 -0400 Message-Id: <1289070464-3392-2-git-send-email-tdent48227@gmail.com> X-Mailer: git-send-email 1.7.3.2.146.gca209 In-Reply-To: <1289070464-3392-1-git-send-email-tdent48227@gmail.com> References: <1289070464-3392-1-git-send-email-tdent48227@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1031 Lines: 38 Changed Makefile to use -y instead of -objs. 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 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/