From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753208Ab0KFTHc (ORCPT ); Sat, 6 Nov 2010 15:07:32 -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 S1752709Ab0KFTHb (ORCPT ); Sat, 6 Nov 2010 15:07:31 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=RBgkDLKVXQa6VJxZPRcGGJz/lWLaLu/egwjPv6+LzoVKNabijAT9iyxnX8RCO4qc4h /KNo9gXLeOgjoR+UvhhumBWkcrKl1y+ZXj/s6mo224HT4czT0Tdz/NHlma8yGFM3YJaT +P1/cRdNKUwoX1zrhDdc2OPrPkE43KtptyNnM= 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 1/2] Drivers: hid: Makefile: Cleaned up Makefile Date: Sat, 6 Nov 2010 15:07:43 -0400 Message-Id: <1289070464-3392-1-git-send-email-tdent48227@gmail.com> X-Mailer: git-send-email 1.7.3.2.146.gca209 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Changed Makefile to use -y instead of -objs. Signed-off-by: Tracey Dent --- drivers/hid/Makefile | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile index c335605..dad858b 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 -- 1.7.3.1.104.gc752e