diff options
| author | Detlev Zundel <dzu@denx.de> | 2009-04-03 11:53:01 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2009-04-03 22:34:07 +0200 | 
| commit | 200779e3e2a9aeda7030b171a8c39d7797019917 (patch) | |
| tree | bafef8607a86769535fc91c5e54dcd94421cfcb5 /board/linkstation/avr.c | |
| parent | 74de7aefd79690bae8cf5a5120f5962d444be089 (diff) | |
| download | olio-uboot-2014.01-200779e3e2a9aeda7030b171a8c39d7797019917.tar.xz olio-uboot-2014.01-200779e3e2a9aeda7030b171a8c39d7797019917.zip | |
Rename common ns16550 constants with UART_ prefix to prevent conflicts
Fix problems introduced in commit
7b5611cdd12ca0cc33f994f0d4a4454788fc3124 [inka4x0: Add hardware
diagnosis functions for inka4x0] which redefined MSR_RI which is
already used on PowerPC systems.
Also eliminate redundant definitions in ps2mult.h.  More cleanup will
be needed for other redundant occurrences though.
Signed-off-by: Detlev Zundel <dzu@denx.de>
Diffstat (limited to 'board/linkstation/avr.c')
| -rw-r--r-- | board/linkstation/avr.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/board/linkstation/avr.c b/board/linkstation/avr.c index fda1b913e..782b24a71 100644 --- a/board/linkstation/avr.c +++ b/board/linkstation/avr.c @@ -90,12 +90,12 @@ void init_AVR_DUART (void)  	 */  	AVR_port->lcr = 0x00;  	AVR_port->ier = 0x00; -	AVR_port->lcr = LCR_BKSE; +	AVR_port->lcr = UART_LCR_BKSE;  	AVR_port->dll = clock_divisor & 0xff;  	AVR_port->dlm = (clock_divisor >> 8) & 0xff; -	AVR_port->lcr = LCR_WLS_8 | LCR_PEN | LCR_EPS; +	AVR_port->lcr = UART_LCR_WLS_8 | UART_LCR_PEN | UART_LCR_EPS;  	AVR_port->mcr = 0x00; -	AVR_port->fcr = FCR_FIFO_EN | FCR_RXSR | FCR_TXSR; +	AVR_port->fcr = UART_FCR_FIFO_EN | UART_FCR_RXSR | UART_FCR_TXSR;  	miconCntl_DisWDT(); |