summaryrefslogtreecommitdiff
path: root/arch/m68k/platform/coldfire/m528x.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2013-03-12 21:20:15 +0400
committerLinus Torvalds <torvalds@linux-foundation.org>2013-03-12 21:20:15 +0400
commit4388817f702c68bf4857dae87b6cf4969c1791bc (patch)
tree519d15f4e28138a8e54738a27edd0d0682c980be /arch/m68k/platform/coldfire/m528x.c
parentfa4a6732a8e6153435941cb730d7d54c8367fe72 (diff)
parentef9240f482e691e13a2d27208f60d1f1f5503545 (diff)
downloadlinux-4388817f702c68bf4857dae87b6cf4969c1791bc.tar.xz
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu
Pull m68knommu fixes from Greg Ungerer: "It contains a few small fixes for the non-MMU m68k platforms. Fixes some compilation problems, some broken header definitions, removes an unused config option and adds a name for the old 68000 CPU support." * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu: m68k: drop "select EMAC_INC" m68knommu: fix misnamed GPIO pin definition for ColdFire 528x CPU m68knommu: fix MC68328.h defines m68knommu: fix build when CPU is not coldfire m68knommu: add CPU_NAME for 68000
Diffstat (limited to 'arch/m68k/platform/coldfire/m528x.c')
-rw-r--r--arch/m68k/platform/coldfire/m528x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/platform/coldfire/m528x.c b/arch/m68k/platform/coldfire/m528x.c
index 83b7dad7a84e..b03a9d271837 100644
--- a/arch/m68k/platform/coldfire/m528x.c
+++ b/arch/m68k/platform/coldfire/m528x.c
@@ -69,7 +69,7 @@ static void __init m528x_uarts_init(void)
u8 port;
/* make sure PUAPAR is set for UART0 and UART1 */
- port = readb(MCF5282_GPIO_PUAPAR);
+ port = readb(MCFGPIO_PUAPAR);
port |= 0x03 | (0x03 << 2);
writeb(port, MCFGPIO_PUAPAR);
}