From: Stefan E. <se...@us...> - 2002-03-14 11:41:41
|
Update of /cvsroot/blob/blob/include/blob/arch In directory usw-pr-cvs1:/tmp/cvs-serv4821/include/blob/arch Modified Files: assabet.h Log Message: FIX BUG 528046: - when neponset attached use UART3 instead of UART1 Index: assabet.h =================================================================== RCS file: /cvsroot/blob/blob/include/blob/arch/assabet.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- assabet.h 27 Feb 2002 18:41:48 -0000 1.8 +++ assabet.h 14 Mar 2002 11:41:37 -0000 1.9 @@ -33,8 +33,16 @@ #define CPU_SPEED (0x0b) -/* serial port */ -#define USE_SERIAL1 +/* serial port + * When neponset is attached use UART 3 (J20) to match + * the linux kernel + */ +#if !defined(NEPONSET) +# define USE_SERIAL1 +#else +# define USE_SERIAL3 +#endif + #define TERMINAL_SPEED baud_9600 |