From patchwork Fri Oct 8 00:01:32 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: T Dent X-Patchwork-Id: 240031 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 o980736a027535 for ; Fri, 8 Oct 2010 00:07:03 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754978Ab0JHACS (ORCPT ); Thu, 7 Oct 2010 20:02:18 -0400 Received: from mail-iw0-f174.google.com ([209.85.214.174]:55788 "EHLO mail-iw0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755276Ab0JHACQ (ORCPT ); Thu, 7 Oct 2010 20:02:16 -0400 Received: by mail-iw0-f174.google.com with SMTP id 9so467885iwn.19 for ; Thu, 07 Oct 2010 17:02:16 -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:in-reply-to:references; bh=twpGVoCjO8Q7NzDxhxeRYL9Z0Pvcni8ob7lzhHb267A=; b=reLwT+vKzssgwOIBXValZfaUuEtUb2Jvwj7agY7vLlAq5m/oNirua7TU2T6EHT7/Jh U7impBq5tmxFuBP/J+kWmt83FRlcOj2PBU5jl3WQTiL2jh+2CO1mLmHfoWZynJLmXE36 S+Zsy1cGl7jJDpYzAmzYdj1sVmwJ8PZD5ytcQ= 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=rDdUJaJt8XbzfCppYRUbiJMyupLxaAMayRHUmK5HsU3KAplb1uluaxFardl4uQ0jYS q0+RT87dCwR7kmWLXxdSd9jmWFqBXKtagLZNDYrTyCjDNfz3r3DpxmvcRByJ8DmGZLcY jnGhDoFvv7UWI4EBBJSPovauUCdQ3E5VdK72o= Received: by 10.231.39.205 with SMTP id h13mr1657264ibe.148.1286496136138; Thu, 07 Oct 2010 17:02:16 -0700 (PDT) Received: from localhost.localdomain (c-68-43-120-16.hsd1.mi.comcast.net [68.43.120.16]) by mx.google.com with ESMTPS id gy41sm2763157ibb.23.2010.10.07.17.02.14 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 07 Oct 2010 17:02:15 -0700 (PDT) From: Tracey Dent To: greg@kroah.com Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, sam@ravnborg.org, linux-kbuild@vger.kernel.org, Tracey Dent Subject: [PATCH 12/33] Staging: ft1000: ft1000-usb: Makefile: replace the use of -objs with -y Date: Thu, 7 Oct 2010 20:01:32 -0400 Message-Id: <1286496113-11897-12-git-send-email-tdent48227@gmail.com> X-Mailer: git-send-email 1.7.3.1.50.g1e633 In-Reply-To: <1286496113-11897-1-git-send-email-tdent48227@gmail.com> References: <1286496113-11897-1-git-send-email-tdent48227@gmail.com> Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@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]); Fri, 08 Oct 2010 00:07:03 +0000 (UTC) diff --git a/drivers/staging/ft1000/ft1000-usb/Makefile b/drivers/staging/ft1000/ft1000-usb/Makefile index 7845c47..dd87ecd 100644 --- a/drivers/staging/ft1000/ft1000-usb/Makefile +++ b/drivers/staging/ft1000/ft1000-usb/Makefile @@ -1,3 +1,3 @@ obj-$(CONFIG_FT1000_USB) += ft1000.o -ft1000-objs := ft1000_chdev.o ft1000_download.o ft1000_hw.o ft1000_proc.o ft1000_usb.o +ft1000-y := ft1000_chdev.o ft1000_download.o ft1000_hw.o ft1000_proc.o ft1000_usb.o