From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul Walmsley Subject: [PATCH 5/5] omap2: use OMAP2_CTRL_BASE in place of OMAP24XX_CTRL_BASE Date: Mon, 21 May 2007 16:59:28 -0600 Message-ID: <20070521230014.905932919@pwsan.com> References: <20070521225923.223790635@pwsan.com> Return-path: Content-Disposition: inline; filename=0005-omap2-use-OMAP2_CTRL_BASE-in-place-of-OMAP24XX_CTRL.patch List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-omap-open-source-bounces@linux.omap.com Errors-To: linux-omap-open-source-bounces@linux.omap.com To: linux-omap-open-source@linux.omap.com List-Id: linux-omap@vger.kernel.org Change users of OMAP24XX_CTRL_BASE to use OMAP2_CTRL_BASE. Remove the OMAP24XX_CTRL_BASE define. Signed-off-by: Paul Walmsley --- arch/arm/mach-omap2/prcm-regs.h | 2 +- arch/arm/plat-omap/mux.c | 6 +++--- include/asm-arm/arch-omap/omap24xx.h | 3 --- 3 files changed, 4 insertions(+), 7 deletions(-) Index: linux-omap/arch/arm/mach-omap2/prcm-regs.h =================================================================== --- linux-omap.orig/arch/arm/mach-omap2/prcm-regs.h +++ linux-omap/arch/arm/mach-omap2/prcm-regs.h @@ -350,7 +350,7 @@ #endif /* IO CONFIG */ -#define CONTROL_REG32(offset) __REG32(OMAP24XX_CTRL_BASE + (offset)) +#define CONTROL_REG32(offset) __REG32(OMAP2_CTRL_BASE + (offset)) #define CONTROL_PADCONF_SPI1_NCS2 CONTROL_REG32(0x104) #define CONTROL_PADCONF_SYS_XTALOUT CONTROL_REG32(0x134) #define CONTROL_PADCONF_UART1_RX CONTROL_REG32(0x0C8) Index: linux-omap/arch/arm/plat-omap/mux.c =================================================================== --- linux-omap.orig/arch/arm/plat-omap/mux.c +++ linux-omap/arch/arm/plat-omap/mux.c @@ -85,7 +85,7 @@ int __init_or_module omap_cfg_reg(const reg |= OMAP24XX_PULL_UP; #if defined(CONFIG_OMAP_MUX_DEBUG) || defined(CONFIG_OMAP_MUX_WARNINGS) { - u8 orig = omap_readb(OMAP24XX_CTRL_BASE + cfg->mux_reg); + u8 orig = omap_readb(OMAP2_CTRL_BASE + cfg->mux_reg); u8 debug = 0; #ifdef CONFIG_OMAP_MUX_DEBUG @@ -95,11 +95,11 @@ int __init_or_module omap_cfg_reg(const if (debug || warn) printk("MUX: setup %s (0x%08x): 0x%02x -> 0x%02x\n", cfg->name, - OMAP24XX_CTRL_BASE + cfg->mux_reg, + OMAP2_CTRL_BASE + cfg->mux_reg, orig, reg); } #endif - omap_writeb(reg, OMAP24XX_CTRL_BASE + cfg->mux_reg); + omap_writeb(reg, OMAP2_CTRL_BASE + cfg->mux_reg); return 0; } Index: linux-omap/include/asm-arm/arch-omap/omap24xx.h =================================================================== --- linux-omap.orig/include/asm-arm/arch-omap/omap24xx.h +++ linux-omap/include/asm-arm/arch-omap/omap24xx.h @@ -72,8 +72,5 @@ #error "Unknown architecture" #endif -/* Temporary defines to be cleaned up in following patches */ -#define OMAP24XX_CTRL_BASE OMAP2_CTRL_BASE - #endif /* __ASM_ARCH_OMAP24XX_H */ --