From patchwork Sat Nov 6 19:07:43 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: T Dent X-Patchwork-Id: 306342 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id oA6J7WGJ031358 for ; Sat, 6 Nov 2010 19:07:32 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752773Ab0KFTHb (ORCPT ); Sat, 6 Nov 2010 15:07:31 -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 Received: by iwn41 with SMTP id 41so2262243iwn.19 for ; Sat, 06 Nov 2010 12:07:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer; bh=ugYdyS9Ktm0d3+3BI/eTZvKadGh/hpEV/fexpXGAyTk=; b=lQrj4fOIHlLrIDxSfIthpansVdGDbJ8orswo5BRVpQ+DIidlX1i2eEQXKMwprGDkN/ VKFSfNI/hxxdS5/N74J7amnXZCDmnCPnIxXnf+jEpG/gx9Oi9NsrqRzN3WXua+W9W5hj VzU9c23EDg5OC7JH2mE0+Py43DVDbonR8qdAw= 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= Received: by 10.231.192.76 with SMTP id dp12mr685843ibb.169.1289070450657; Sat, 06 Nov 2010 12:07:30 -0700 (PDT) Received: from localhost.localdomain (c-68-43-120-144.hsd1.mi.comcast.net [68.43.120.144]) by mx.google.com with ESMTPS id gy41sm3270622ibb.11.2010.11.06.12.07.29 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 06 Nov 2010 12:07:29 -0700 (PDT) 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-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Sat, 06 Nov 2010 19:07:33 +0000 (UTC) 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