mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
ml507: Fix Xilinx uartlite driver hang
The default configuration for ml507 will generate a hang() in the Xilinx uartlite driver. userial_ports[] in drivers/serial/serial_xuartlite.c does not get initialized properly. CONFIG_SERIAL_BASE is unused. XILINX_UARTLITE_BASEADDR is used instead. Signed-off-by: Rommel Custodio <sessyargc+uboot@gmail.com>
This commit is contained in:
parent
89e76b5f86
commit
6538397c56
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@
|
|||
/* serial communication */
|
||||
#ifdef XPAR_UARTLITE_0_BASEADDR
|
||||
#define CONFIG_XILINX_UARTLITE
|
||||
#define CONFIG_SERIAL_BASE XPAR_UARTLITE_0_BASEADDR
|
||||
#define XILINX_UARTLITE_BASEADDR XPAR_UARTLITE_0_BASEADDR
|
||||
#define CONFIG_BAUDRATE XPAR_UARTLITE_0_BAUDRATE
|
||||
#define CONFIG_SYS_BAUDRATE_TABLE { CONFIG_BAUDRATE }
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue