diff options
author | Matt Porter <mporter@ti.com> | 2013-03-15 10:07:02 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-03-24 12:49:11 -0400 |
commit | 81df2bab46d3bed319e21571c68db8e0a048bbfd (patch) | |
tree | c259752906f7609a39b48268a213fc02b893cc16 /board/phytec | |
parent | 98f92001b3af0748d02e36b515a59865fb187415 (diff) |
am33xx: convert defines from am33xx-specific to generic names
Eliminate AM33xx specific names to prepare for TI814x support
within AM33xx-land.
Signed-off-by: Matt Porter <mporter@ti.com>
Reviewed-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'board/phytec')
-rw-r--r-- | board/phytec/pcm051/board.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/board/phytec/pcm051/board.c b/board/phytec/pcm051/board.c index 55bc0187145..471725a2fa7 100644 --- a/board/phytec/pcm051/board.c +++ b/board/phytec/pcm051/board.c @@ -61,7 +61,7 @@ static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE; static void rtc32k_enable(void) { - struct rtc_regs *rtc = (struct rtc_regs *)AM335X_RTC_BASE; + struct rtc_regs *rtc = (struct rtc_regs *)RTC_BASE; /* * Unlock the RTC's registers. For more details please see the @@ -199,8 +199,8 @@ static struct cpsw_slave_data cpsw_slaves[] = { }; static struct cpsw_platform_data cpsw_data = { - .mdio_base = AM335X_CPSW_MDIO_BASE, - .cpsw_base = AM335X_CPSW_BASE, + .mdio_base = CPSW_MDIO_BASE, + .cpsw_base = CPSW_BASE, .mdio_div = 0xff, .channels = 8, .cpdma_reg_ofs = 0x800, |