aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/mach-integrator/core.c
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2012-06-11 00:14:15 +0200
committerMike Turquette <mturquette@linaro.org>2012-07-11 17:58:44 -0700
commitd59fdcfc63a2d15b11dde10a85233b95cee0ad2e (patch)
treed9caefd5dd6237d568a1a7170152f55b56715a4d /arch/arm/mach-integrator/core.c
parentcb479129efa4c7d444c5b3f1d271bfdeadd271c8 (diff)
ARM: integrator: put symbolic bus names on devices
All the Integrator devices have bus names like "mb:16" which I think means "memory base 0x16000000" which is where the UART0 is. So let's call it "uart0" because that's what most platforms do these days. Change this everywhere for the integrator as we prepare for some core clock code movement. Cc: Russell King <linux@arm.linux.org.uk> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'arch/arm/mach-integrator/core.c')
-rw-r--r--arch/arm/mach-integrator/core.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/arch/arm/mach-integrator/core.c b/arch/arm/mach-integrator/core.c
index eaf6c6366ff..2a20bba246f 100644
--- a/arch/arm/mach-integrator/core.c
+++ b/arch/arm/mach-integrator/core.c
@@ -41,17 +41,17 @@ static struct amba_pl010_data integrator_uart_data;
#define KMI0_IRQ { IRQ_KMIINT0 }
#define KMI1_IRQ { IRQ_KMIINT1 }
-static AMBA_APB_DEVICE(rtc, "mb:15", 0,
+static AMBA_APB_DEVICE(rtc, "rtc", 0,
INTEGRATOR_RTC_BASE, INTEGRATOR_RTC_IRQ, NULL);
-static AMBA_APB_DEVICE(uart0, "mb:16", 0,
+static AMBA_APB_DEVICE(uart0, "uart0", 0,
INTEGRATOR_UART0_BASE, INTEGRATOR_UART0_IRQ, &integrator_uart_data);
-static AMBA_APB_DEVICE(uart1, "mb:17", 0,
+static AMBA_APB_DEVICE(uart1, "uart1", 0,
INTEGRATOR_UART1_BASE, INTEGRATOR_UART1_IRQ, &integrator_uart_data);
-static AMBA_APB_DEVICE(kmi0, "mb:18", 0, KMI0_BASE, KMI0_IRQ, NULL);
-static AMBA_APB_DEVICE(kmi1, "mb:19", 0, KMI1_BASE, KMI1_IRQ, NULL);
+static AMBA_APB_DEVICE(kmi0, "kmi0", 0, KMI0_BASE, KMI0_IRQ, NULL);
+static AMBA_APB_DEVICE(kmi1, "kmi1", 0, KMI1_BASE, KMI1_IRQ, NULL);
static struct amba_device *amba_devs[] __initdata = {
&rtc_device,
@@ -83,19 +83,19 @@ static struct clk_lookup lookups[] = {
.dev_id = "ap_timer",
.clk = &clk24mhz,
}, { /* UART0 */
- .dev_id = "mb:16",
+ .dev_id = "uart0",
.clk = &uartclk,
}, { /* UART1 */
- .dev_id = "mb:17",
+ .dev_id = "uart1",
.clk = &uartclk,
}, { /* KMI0 */
- .dev_id = "mb:18",
+ .dev_id = "kmi0",
.clk = &clk24mhz,
}, { /* KMI1 */
- .dev_id = "mb:19",
+ .dev_id = "kmi1",
.clk = &clk24mhz,
}, { /* MMCI - IntegratorCP */
- .dev_id = "mb:1c",
+ .dev_id = "mmci",
.clk = &uartclk,
}
};