From patchwork Sun Nov 7 14:46:27 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: T Dent X-Patchwork-Id: 306862 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 oA7Ekbaf014567 for ; Sun, 7 Nov 2010 14:46:37 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752717Ab0KGOqg (ORCPT ); Sun, 7 Nov 2010 09:46:36 -0500 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 S1752408Ab0KGOqf (ORCPT ); Sun, 7 Nov 2010 09:46:35 -0500 Received: by iwn41 with SMTP id 41so2932002iwn.19 for ; Sun, 07 Nov 2010 06:46:35 -0800 (PST) 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=Z/oyls0FbHq6JOzdPnOi9Wk6/Vy9FOomBjTIouaUKWQ=; b=wv6UOZKnej9YqahkewfrtKFgphcLSf5G1k07KkR3E259Kl62sQPdodkpGffs59kohM jAesjVEmDuQYskgh9Rau9dje4E7Zdn6+aoOjh3L8T/QGQ20xdz/g/PCmvZIFcLnCHrrg 8gvFaChDLIrRCZjNlHN+IHYNfg/UMXewPGZYI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=jWRZZb40DVdwIWl2goTvN0KHcw/y0FmdL0KbI6fBrflxVMRL+JIOPlIOupH3dMt1n4 gVYs3cJQwbePAgb4Pt7TIvhXxD0Yko5pOduXSr1EE7xsNXtNdoSMJcosFkOdUNwZ56Rp Va5NocWkWAWz/FD11h1KH087YnOqBJxfphVDY= Received: by 10.42.182.15 with SMTP id ca15mr2893457icb.31.1289141195243; Sun, 07 Nov 2010 06:46:35 -0800 (PST) Received: from localhost.localdomain (c-68-43-120-144.hsd1.mi.comcast.net [68.43.120.144]) by mx.google.com with ESMTPS id 8sm4649753iba.16.2010.11.07.06.46.32 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 07 Nov 2010 06:46:33 -0800 (PST) From: Tracey Dent 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 Subject: [PATCH 1/2] Drivers: hid: Makefile: Cleaned up Makefile Date: Sun, 7 Nov 2010 09:46:27 -0500 Message-Id: <1289141188-1447-1-git-send-email-tdent48227@gmail.com> X-Mailer: git-send-email 1.7.3.2.161.g3089c 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]); Sun, 07 Nov 2010 14:46:37 +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