summaryrefslogtreecommitdiffstats
path: root/arch/m68k/platform/54xx
diff options
context:
space:
mode:
authorGreg Ungerer <gerg@uclinux.org>2011-12-23 15:46:37 +0100
committerGreg Ungerer <gerg@uclinux.org>2012-03-05 00:43:06 +0100
commitbbbeeaf2f74b634c95af3492e4958e752966eaa5 (patch)
tree1cddb9bdf8d1e7ed123f70205927692463c35c5f /arch/m68k/platform/54xx
parentm68knommu: make 5407 UART platform addressing consistent (diff)
downloadlinux-bbbeeaf2f74b634c95af3492e4958e752966eaa5.tar.xz
linux-bbbeeaf2f74b634c95af3492e4958e752966eaa5.zip
m68knommu: make 54xx UART platform addressing consistent
If we make all UART addressing consistent across all ColdFire family members then we will be able to remove the duplicated plaform data and use a single setup for all. So modify the ColdFire 54xx UART addressing so that: . UARTs are numbered from 0 up . base addresses are absolute (not relative to MBAR peripheral register) . use a common name for IRQs used Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68k/platform/54xx')
-rw-r--r--arch/m68k/platform/54xx/config.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/arch/m68k/platform/54xx/config.c b/arch/m68k/platform/54xx/config.c
index 8282ef1c783e..fdf6dcf5da52 100644
--- a/arch/m68k/platform/54xx/config.c
+++ b/arch/m68k/platform/54xx/config.c
@@ -29,20 +29,20 @@
static struct mcf_platform_uart m54xx_uart_platform[] = {
{
- .mapbase = MCF_MBAR + MCFUART_BASE1,
- .irq = 64 + 35,
+ .mapbase = MCFUART_BASE0,
+ .irq = MCF_IRQ_UART0,
},
{
- .mapbase = MCF_MBAR + MCFUART_BASE2,
- .irq = 64 + 34,
+ .mapbase = MCFUART_BASE1,
+ .irq = MCF_IRQ_UART1,
},
{
- .mapbase = MCF_MBAR + MCFUART_BASE3,
- .irq = 64 + 33,
+ .mapbase = MCFUART_BASE2,
+ .irq = MCF_IRQ_UART2,
},
{
- .mapbase = MCF_MBAR + MCFUART_BASE4,
- .irq = 64 + 32,
+ .mapbase = MCFUART_BASE3,
+ .irq = MCF_IRQ_UART3,
},
};