diff options
| author | Stefan Roese <sr@denx.de> | 2005-08-08 12:42:22 +0200 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2005-08-08 12:42:22 +0200 | 
| commit | 846b0dd2dca945c8bede8a34e2fa86e876715a06 (patch) | |
| tree | 1fdce4c4eba5fd31df6027a99283ae6987c11007 /cpu/ppc4xx/serial.c | |
| parent | 700a0c648df72f2c8e0589c0d0470b5ffd7cab7b (diff) | |
| download | olio-uboot-2014.01-846b0dd2dca945c8bede8a34e2fa86e876715a06.tar.xz olio-uboot-2014.01-846b0dd2dca945c8bede8a34e2fa86e876715a06.zip | |
Changed CONFIG_440_xx to CONFIG_440xx for a consistent design (405 and linux)
Patch by Stefan Roese, 08 Aug 2005
Diffstat (limited to 'cpu/ppc4xx/serial.c')
| -rw-r--r-- | cpu/ppc4xx/serial.c | 20 | 
1 files changed, 10 insertions, 10 deletions
| diff --git a/cpu/ppc4xx/serial.c b/cpu/ppc4xx/serial.c index 92f8ddb2e..8cf7dab3a 100644 --- a/cpu/ppc4xx/serial.c +++ b/cpu/ppc4xx/serial.c @@ -269,14 +269,14 @@ int serial_tstc ()  #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_440) || defined(CONFIG_405EP)  #if defined(CONFIG_440) -#if defined(CONFIG_440_EP) || defined(CONFIG_440_GR) +#if defined(CONFIG_440EP) || defined(CONFIG_440GR)  #define UART0_BASE  CFG_PERIPHERAL_BASE + 0x00000300  #define UART1_BASE  CFG_PERIPHERAL_BASE + 0x00000400  #else  #define UART0_BASE  CFG_PERIPHERAL_BASE + 0x00000200  #define UART1_BASE  CFG_PERIPHERAL_BASE + 0x00000300  #endif -#if defined(CONFIG_440_GX) || defined(CONFIG_440_EP) || defined(CONFIG_440_GR) +#if defined(CONFIG_440GX) || defined(CONFIG_440EP) || defined(CONFIG_440GR)  #define CR0_MASK        0xdfffffff  #define CR0_EXTCLK_ENA  0x00800000  #define CR0_UDIV_POS    0 @@ -284,7 +284,7 @@ int serial_tstc ()  #define CR0_MASK        0x3fff0000  #define CR0_EXTCLK_ENA  0x00600000  #define CR0_UDIV_POS    16 -#endif /* CONFIG_440_GX */ +#endif /* CONFIG_440GX */  #elif defined(CONFIG_405EP)  #define UART0_BASE      0xef600300  #define UART1_BASE      0xef600400 @@ -306,17 +306,17 @@ int serial_tstc ()  #if defined(CONFIG_UART1_CONSOLE)  #define ACTING_UART0_BASE	UART1_BASE  #define ACTING_UART1_BASE	UART0_BASE -#if defined(CONFIG_440_GX) || defined(CONFIG_440_EP) || defined(CONFIG_440_GR) +#if defined(CONFIG_440GX) || defined(CONFIG_440EP) || defined(CONFIG_440GR)  #define UART0_SDR           sdr_uart1  #define UART1_SDR           sdr_uart0 -#endif /* CONFIG_440_GX */ +#endif /* CONFIG_440GX */  #else  #define ACTING_UART0_BASE	UART0_BASE  #define ACTING_UART1_BASE	UART1_BASE -#if defined(CONFIG_440_GX) || defined(CONFIG_440_EP) || defined(CONFIG_440_GR) +#if defined(CONFIG_440GX) || defined(CONFIG_440EP) || defined(CONFIG_440GR)  #define UART0_SDR           sdr_uart0  #define UART1_SDR           sdr_uart1 -#endif /* CONFIG_440_GX */ +#endif /* CONFIG_440GX */  #endif  #if defined(CONFIG_405EP) && defined(CFG_EXT_SERIAL_CLOCK) @@ -436,7 +436,7 @@ int serial_init(void)  	unsigned long tmp;  #endif -#if defined(CONFIG_440_GX) +#if defined(CONFIG_440GX)  #if defined(CONFIG_SERIAL_MULTI)  	if (UART0_BASE == dev_base) {  		mfsdr(UART0_SDR,reg); @@ -451,7 +451,7 @@ int serial_init(void)  #endif  #else  	reg = mfdcr(cntrl0) & ~CR0_MASK; -#endif /* CONFIG_440_GX */ +#endif /* CONFIG_440GX */  #ifdef CFG_EXT_SERIAL_CLOCK  	reg |= CR0_EXTCLK_ENA;  	udiv = 1; @@ -465,7 +465,7 @@ int serial_init(void)  	serial_divs (gd->baudrate, &udiv, &bdiv);  #endif -#if defined(CONFIG_440_GX) || defined(CONFIG_440_EP) || defined(CONFIG_440_GR) +#if defined(CONFIG_440GX) || defined(CONFIG_440EP) || defined(CONFIG_440GR)  	reg |= udiv << CR0_UDIV_POS;	/* set the UART divisor */  #if defined(CONFIG_SERIAL_MULTI)  	if (UART0_BASE == dev_base) { |