From patchwork Sun May 15 23:37:53 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 1492 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.159.109) by localhost6.localdomain6 with IMAP4-SSL; 08 Jun 2011 14:52:25 -0000 Delivered-To: patches@linaro.org Received: by 10.224.61.3 with SMTP id r3cs68655qah; Sun, 15 May 2011 16:37:58 -0700 (PDT) Received: by 10.223.54.219 with SMTP id r27mr3109267fag.124.1305502677367; Sun, 15 May 2011 16:37:57 -0700 (PDT) Received: from mail.df.lth.se (mail.df.lth.se [194.47.250.12]) by mx.google.com with ESMTPS id p6si6503623fax.108.2011.05.15.16.37.55 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 15 May 2011 16:37:56 -0700 (PDT) Received-SPF: pass (google.com: domain of triad@df.lth.se designates 194.47.250.12 as permitted sender) client-ip=194.47.250.12; Authentication-Results: mx.google.com; spf=pass (google.com: domain of triad@df.lth.se designates 194.47.250.12 as permitted sender) smtp.mail=triad@df.lth.se Received: from mer.df.lth.se (mer.df.lth.se [194.47.250.37]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.df.lth.se (Postfix) with ESMTPS id 7519065D7C; Mon, 16 May 2011 01:37:55 +0200 (CEST) Received: from mer.df.lth.se (triad@localhost.localdomain [127.0.0.1]) by mer.df.lth.se (8.14.3/8.14.3/Debian-9.4) with ESMTP id p4FNbtTI032607; Mon, 16 May 2011 01:37:55 +0200 Received: (from triad@localhost) by mer.df.lth.se (8.14.3/8.14.3/Submit) id p4FNbtcn032606; Mon, 16 May 2011 01:37:55 +0200 From: Linus Walleij To: Samuel Ortiz , linux-kernel@vger.kernel.org Cc: Lee Jones , Linus Walleij Subject: [PATCH 05/13] mach-ux500: rename PRCMU driver per SoC Date: Mon, 16 May 2011 01:37:53 +0200 Message-Id: <1305502673-32580-1-git-send-email-linus.walleij@linaro.org> X-Mailer: git-send-email 1.7.2.5 This renames the prcmu.c file to prcmu-db8500.c so as to indicate that it is for this one SoC. Signed-off-by: Linus Walleij --- arch/arm/mach-ux500/Makefile | 2 +- arch/arm/mach-ux500/{prcmu.c => prcmu-db8500.c} | 0 2 files changed, 1 insertions(+), 1 deletions(-) rename arch/arm/mach-ux500/{prcmu.c => prcmu-db8500.c} (100%) diff --git a/arch/arm/mach-ux500/prcmu.c b/arch/arm/mach-ux500/prcmu-db8500.c similarity index 100% rename from arch/arm/mach-ux500/prcmu.c rename to arch/arm/mach-ux500/prcmu-db8500.c diff --git a/arch/arm/mach-ux500/Makefile b/arch/arm/mach-ux500/Makefile index b549a8f..2a08a10 100644 --- a/arch/arm/mach-ux500/Makefile +++ b/arch/arm/mach-ux500/Makefile @@ -5,7 +5,7 @@ obj-y := clock.o cpu.o devices.o devices-common.o \ id.o usb.o obj-$(CONFIG_UX500_SOC_DB5500) += cpu-db5500.o dma-db5500.o -obj-$(CONFIG_UX500_SOC_DB8500) += cpu-db8500.o devices-db8500.o prcmu.o +obj-$(CONFIG_UX500_SOC_DB8500) += cpu-db8500.o devices-db8500.o prcmu-db8500.o obj-$(CONFIG_MACH_U8500) += board-mop500.o board-mop500-sdi.o \ board-mop500-regulators.o \ board-mop500-uib.o board-mop500-stuib.o \