diff options
author | Michal Simek <monstr@monstr.eu> | 2011-02-28 09:17:22 (GMT) |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2011-10-03 06:01:56 (GMT) |
commit | 68332608bcb4a1e9f172c8162247a61f51730698 (patch) | |
tree | 23f8945d787d1fe6b9751597f459a4ffdeef2820 | |
parent | 1252df065998d56cc57c387b64eb96f695b6ce63 (diff) | |
download | u-boot-fsl-qoriq-68332608bcb4a1e9f172c8162247a61f51730698.tar.xz |
microblaze: Remove address offset for uart16550
U-Boot BSP handle 0x3 offset for big endian systems.
Little endian Microblaze systems don't use any offset.
Signed-off-by: Michal Simek <monstr@monstr.eu>
-rw-r--r-- | include/configs/microblaze-generic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/microblaze-generic.h b/include/configs/microblaze-generic.h index 8cdd72a..a334110 100644 --- a/include/configs/microblaze-generic.h +++ b/include/configs/microblaze-generic.h @@ -44,7 +44,7 @@ # define CONFIG_SYS_NS16550_REG_SIZE -4 # define CONFIG_CONS_INDEX 1 # define CONFIG_SYS_NS16550_COM1 \ - (XILINX_UART16550_BASEADDR + 0x1000 + 0x3) + (XILINX_UART16550_BASEADDR + 0x1000) # define CONFIG_SYS_NS16550_CLK XILINX_UART16550_CLOCK_HZ # define CONFIG_BAUDRATE 115200 |