Skip to content

Commit

Permalink
m68knommu: Fix MCFUART_TXFIFOSIZE for m548x.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Philippe De Muyter authored and Greg Ungerer committed Oct 21, 2010
1 parent ea49f8f commit 48a232d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion arch/m68k/include/asm/mcfuart.h
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,9 @@ struct mcf_platform_uart {
#define MCFUART_URF_RXS 0xc0 /* Receiver status */
#endif

#if defined(CONFIG_M5272)
#if defined(CONFIG_M548x)
#define MCFUART_TXFIFOSIZE 512
#elif defined(CONFIG_M5272)
#define MCFUART_TXFIFOSIZE 25
#else
#define MCFUART_TXFIFOSIZE 1
Expand Down

0 comments on commit 48a232d

Please sign in to comment.