aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mv78xx0/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-mv78xx0/common.c')
-rw-r--r--arch/arm/mach-mv78xx0/common.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/arch/arm/mach-mv78xx0/common.c b/arch/arm/mach-mv78xx0/common.c
index c4e3458e0674..fcda4a4f830d 100644
--- a/arch/arm/mach-mv78xx0/common.c
+++ b/arch/arm/mach-mv78xx0/common.c
@@ -300,8 +300,7 @@ void __init mv78xx0_sata_init(struct mv_sata_platform_data *sata_data)
300 ****************************************************************************/ 300 ****************************************************************************/
301void __init mv78xx0_uart0_init(void) 301void __init mv78xx0_uart0_init(void)
302{ 302{
303 orion_uart0_init((unsigned long) UART0_VIRT_BASE, 303 orion_uart0_init(UART0_VIRT_BASE, UART0_PHYS_BASE,
304 UART0_PHYS_BASE,
305 IRQ_MV78XX0_UART_0, tclk); 304 IRQ_MV78XX0_UART_0, tclk);
306} 305}
307 306
@@ -311,8 +310,7 @@ void __init mv78xx0_uart0_init(void)
311 ****************************************************************************/ 310 ****************************************************************************/
312void __init mv78xx0_uart1_init(void) 311void __init mv78xx0_uart1_init(void)
313{ 312{
314 orion_uart1_init((unsigned long) UART1_VIRT_BASE, 313 orion_uart1_init(UART1_VIRT_BASE, UART1_PHYS_BASE,
315 UART1_PHYS_BASE,
316 IRQ_MV78XX0_UART_1, tclk); 314 IRQ_MV78XX0_UART_1, tclk);
317} 315}
318 316
@@ -322,8 +320,7 @@ void __init mv78xx0_uart1_init(void)
322 ****************************************************************************/ 320 ****************************************************************************/
323void __init mv78xx0_uart2_init(void) 321void __init mv78xx0_uart2_init(void)
324{ 322{
325 orion_uart2_init((unsigned long) UART2_VIRT_BASE, 323 orion_uart2_init(UART2_VIRT_BASE, UART2_PHYS_BASE,
326 UART2_PHYS_BASE,
327 IRQ_MV78XX0_UART_2, tclk); 324 IRQ_MV78XX0_UART_2, tclk);
328} 325}
329 326
@@ -332,8 +329,7 @@ void __init mv78xx0_uart2_init(void)
332 ****************************************************************************/ 329 ****************************************************************************/
333void __init mv78xx0_uart3_init(void) 330void __init mv78xx0_uart3_init(void)
334{ 331{
335 orion_uart3_init((unsigned long) UART3_VIRT_BASE, 332 orion_uart3_init(UART3_VIRT_BASE, UART3_PHYS_BASE,
336 UART3_PHYS_BASE,
337 IRQ_MV78XX0_UART_3, tclk); 333 IRQ_MV78XX0_UART_3, tclk);
338} 334}
339 335