summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mx1/mach-scb9328.c
diff options
context:
space:
mode:
authorUwe Kleine-König2010-03-04 21:02:41 +0100
committerUwe Kleine-König2010-06-24 15:40:24 +0200
commit05a3185cad1bb4e1b2206fdca9041234c3662a25 (patch)
tree8ba67c86d4ab2b6d3f2318f3b32dce18b9b72f62 /arch/arm/mach-mx1/mach-scb9328.c
parentARM: mx25: rename mach-mx25pdk.c to mach-mx25_3ds.c matching its arch number (diff)
downloadkernel-qcow2-linux-05a3185cad1bb4e1b2206fdca9041234c3662a25.tar.gz
kernel-qcow2-linux-05a3185cad1bb4e1b2206fdca9041234c3662a25.tar.xz
kernel-qcow2-linux-05a3185cad1bb4e1b2206fdca9041234c3662a25.zip
ARM: mx1: don't use deprecated symbol names
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx1/mach-scb9328.c')
-rw-r--r--arch/arm/mach-mx1/mach-scb9328.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/arm/mach-mx1/mach-scb9328.c b/arch/arm/mach-mx1/mach-scb9328.c
index 7587a7a12460..7c6bbe835458 100644
--- a/arch/arm/mach-mx1/mach-scb9328.c
+++ b/arch/arm/mach-mx1/mach-scb9328.c
@@ -31,8 +31,8 @@
* This scb9328 has a 32MiB flash
*/
static struct resource flash_resource = {
- .start = IMX_CS0_PHYS,
- .end = IMX_CS0_PHYS + (32 * 1024 * 1024) - 1,
+ .start = MX1_CS0_PHYS,
+ .end = MX1_CS0_PHYS + (32 * 1024 * 1024) - 1,
.flags = IORESOURCE_MEM,
};
@@ -70,13 +70,13 @@ static struct dm9000_plat_data dm9000_platdata = {
static struct resource dm9000x_resources[] = {
{
.name = "address area",
- .start = IMX_CS5_PHYS,
- .end = IMX_CS5_PHYS + 1,
+ .start = MX1_CS5_PHYS,
+ .end = MX1_CS5_PHYS + 1,
.flags = IORESOURCE_MEM, /* address access */
}, {
.name = "data area",
- .start = IMX_CS5_PHYS + 4,
- .end = IMX_CS5_PHYS + 5,
+ .start = MX1_CS5_PHYS + 4,
+ .end = MX1_CS5_PHYS + 5,
.flags = IORESOURCE_MEM, /* data access */
}, {
.start = IRQ_GPIOC(3),