From patchwork Tue May 5 00:25:54 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Lindgren X-Patchwork-Id: 21791 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n450Pl1N026639 for ; Tue, 5 May 2009 00:25:58 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753618AbZEEAZ5 (ORCPT ); Mon, 4 May 2009 20:25:57 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754074AbZEEAZ4 (ORCPT ); Mon, 4 May 2009 20:25:56 -0400 Received: from mho-02-ewr.mailhop.org ([204.13.248.72]:60214 "EHLO mho-02-ewr.mailhop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753618AbZEEAZ4 (ORCPT ); Mon, 4 May 2009 20:25:56 -0400 Received: from c-67-160-239-110.hsd1.ca.comcast.net ([67.160.239.110] helo=[127.0.0.1]) by mho-02-ewr.mailhop.org with esmtpa (Exim 4.68) (envelope-from ) id 1M18Tr-000Nmi-II; Tue, 05 May 2009 00:25:55 +0000 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 67.160.239.110 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/mailhop/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX1+NU1WYNMy7I/0r/dNi1ufr Subject: [PATCH 1/7] onenand init: Rename board-n800-flash.c to gpmc-onenand.c To: dedekind@infradead.org, juha.yrjola@solidboot.com, linux-omap@vger.kernel.org, adrian.hunter@nokia.com From: Tony Lindgren Date: Mon, 04 May 2009 17:25:54 -0700 Message-ID: <20090505002554.2894.60509.stgit@localhost> In-Reply-To: <20090505002144.2894.25201.stgit@localhost> References: <20090505002144.2894.25201.stgit@localhost> User-Agent: StGit/0.14.3.347.g594a MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org Rename board-n800-flash.c to gpmc-onenand.c. Signed-off-by: Tony Lindgren --- arch/arm/mach-omap2/Makefile | 4 ++-- arch/arm/mach-omap2/gpmc-onenand.c | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename arch/arm/mach-omap2/{board-n800-flash.c => gpmc-onenand.c} (100%) diff --git a/arch/arm/mach-omap2/board-n800-flash.c b/arch/arm/mach-omap2/gpmc-onenand.c similarity index 100% rename from arch/arm/mach-omap2/board-n800-flash.c rename to arch/arm/mach-omap2/gpmc-onenand.c -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile index 76acefa..9127a94 100644 --- a/arch/arm/mach-omap2/Makefile +++ b/arch/arm/mach-omap2/Makefile @@ -55,14 +55,14 @@ obj-$(CONFIG_MACH_OMAP_LDP) += board-ldp.o \ obj-$(CONFIG_MACH_OMAP_APOLLON) += board-apollon.o \ board-apollon-mmc.o \ board-apollon-keys.o -obj-$(CONFIG_MACH_NOKIA_N800) += board-n800.o board-n800-flash.o \ +obj-$(CONFIG_MACH_NOKIA_N800) += board-n800.o gpmc-onenand.o \ board-n800-mmc.o board-n800-bt.o \ board-n800-usb.o \ board-n800-dsp.o \ board-n800-camera.o obj-$(CONFIG_MACH_NOKIA_N810) += board-n810.o obj-$(CONFIG_MACH_NOKIA_RX51) += board-rx51.o \ - board-n800-flash.o \ + gpmc-onenand.o \ board-rx51-flash.o \ board-rx51-sdram.o \ board-rx51-video.o \