aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68k
diff options
context:
space:
mode:
authorPhilippe De Muyter <phdm@macqel.be>2010-09-21 11:14:36 -0400
committerGreg Ungerer <gerg@uclinux.org>2010-10-20 20:17:31 -0400
commit48a232d14c0853854497fb44207fc96d8b7e7dff (patch)
treea18efb9dfafa6498f41022ae91043edc9a8ec412 /arch/m68k
parentea49f8ffae6262e8de9a0d3e9fcdd384156c7e05 (diff)
m68knommu: Fix MCFUART_TXFIFOSIZE for m548x.
Serial lines on the MCF548x have really big fifos : 512 bytes. Signed-off-by: Philippe De Muyter <phdm@macqel.be> Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68k')
-rw-r--r--arch/m68k/include/asm/mcfuart.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/m68k/include/asm/mcfuart.h b/arch/m68k/include/asm/mcfuart.h
index af16f3be4e19..db72e2b889ca 100644
--- a/arch/m68k/include/asm/mcfuart.h
+++ b/arch/m68k/include/asm/mcfuart.h
@@ -217,7 +217,9 @@ struct mcf_platform_uart {
217#define MCFUART_URF_RXS 0xc0 /* Receiver status */ 217#define MCFUART_URF_RXS 0xc0 /* Receiver status */
218#endif 218#endif
219 219
220#if defined(CONFIG_M5272) 220#if defined(CONFIG_M548x)
221#define MCFUART_TXFIFOSIZE 512
222#elif defined(CONFIG_M5272)
221#define MCFUART_TXFIFOSIZE 25 223#define MCFUART_TXFIFOSIZE 25
222#else 224#else
223#define MCFUART_TXFIFOSIZE 1 225#define MCFUART_TXFIFOSIZE 1