From: Philippe De Muyter Date: Tue, 21 Sep 2010 15:14:36 +0000 (+0200) Subject: m68knommu: Fix MCFUART_TXFIFOSIZE for m548x. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=48a232d14c0853854497fb44207fc96d8b7e7dff;p=linux-beck.git m68knommu: Fix MCFUART_TXFIFOSIZE for m548x. Serial lines on the MCF548x have really big fifos : 512 bytes. Signed-off-by: Philippe De Muyter Signed-off-by: Greg Ungerer --- 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 { #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