From patchwork Sat Apr 2 09:43:00 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Manjunath Hadli X-Patchwork-Id: 683431 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 p329hC6W001152 for ; Sat, 2 Apr 2011 09:43:12 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755592Ab1DBJnK (ORCPT ); Sat, 2 Apr 2011 05:43:10 -0400 Received: from devils.ext.ti.com ([198.47.26.153]:41160 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755492Ab1DBJnJ (ORCPT ); Sat, 2 Apr 2011 05:43:09 -0400 Received: from dbdp31.itg.ti.com ([172.24.170.98]) by devils.ext.ti.com (8.13.7/8.13.7) with ESMTP id p329h44E027007 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 2 Apr 2011 04:43:06 -0500 Received: from psplinux051.india.ti.com (localhost [127.0.0.1]) by dbdp31.itg.ti.com (8.13.8/8.13.8) with ESMTP id p329h1dE012204; Sat, 2 Apr 2011 15:13:01 +0530 (IST) Received: from psplinux051.india.ti.com (localhost [127.0.0.1]) by psplinux051.india.ti.com (8.13.1/8.13.1) with ESMTP id p329h0KE004319; Sat, 2 Apr 2011 15:13:00 +0530 Received: (from x0144960@localhost) by psplinux051.india.ti.com (8.13.1/8.13.1/Submit) id p329h04j004316; Sat, 2 Apr 2011 15:13:00 +0530 From: Manjunath Hadli To: LMML , Kevin Hilman , LAK , Sekhar Nori Cc: dlos , Manjunath Hadli Subject: [PATCH v18 07/13] davinci: move DM64XX_VDD3P3V_PWDN to devices.c Date: Sat, 2 Apr 2011 15:13:00 +0530 Message-Id: <1301737380-4288-1-git-send-email-manjunath.hadli@ti.com> X-Mailer: git-send-email 1.6.2.4 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Sat, 02 Apr 2011 09:43:12 +0000 (UTC) Move the definition of DM64XX_VDD3P3V_PWDN from hardware.h to devices.c since it is used only there. Signed-off-by: Manjunath Hadli Acked-by: Sekhar Nori --- arch/arm/mach-davinci/devices.c | 1 + arch/arm/mach-davinci/include/mach/hardware.h | 3 --- 2 files changed, 1 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-davinci/devices.c b/arch/arm/mach-davinci/devices.c index 22ebc64..4e1b663 100644 --- a/arch/arm/mach-davinci/devices.c +++ b/arch/arm/mach-davinci/devices.c @@ -182,6 +182,7 @@ static struct platform_device davinci_mmcsd1_device = { .resource = mmcsd1_resources, }; +#define DM64XX_VDD3P3V_PWDN 0x48 void __init davinci_setup_mmc(int module, struct davinci_mmc_config *config) { diff --git a/arch/arm/mach-davinci/include/mach/hardware.h b/arch/arm/mach-davinci/include/mach/hardware.h index c45ba1f..414e0b9 100644 --- a/arch/arm/mach-davinci/include/mach/hardware.h +++ b/arch/arm/mach-davinci/include/mach/hardware.h @@ -21,9 +21,6 @@ */ #define DAVINCI_SYSTEM_MODULE_BASE 0x01C40000 -/* System control register offsets */ -#define DM64XX_VDD3P3V_PWDN 0x48 - /* * I/O mapping */