diff options
author | Simon Glass <sjg@chromium.org> | 2013-03-05 14:40:02 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-03-15 16:14:01 -0400 |
commit | 69e0683241ae291729adc8737fddfeae9801b024 (patch) | |
tree | 27672519b0bed2dabefb7d9dceff711983737d36 /drivers/serial | |
parent | 81e2ff0bf13506c16cc8bbf449f6623ea8c5d84a (diff) | |
download | u-boot-imx-69e0683241ae291729adc8737fddfeae9801b024.zip u-boot-imx-69e0683241ae291729adc8737fddfeae9801b024.tar.gz u-boot-imx-69e0683241ae291729adc8737fddfeae9801b024.tar.bz2 |
serial: ns16550: Remove unwanted cast
This cast does not seem correct, since we should be writing to a pointer,
not a ulong.
This fixes the following warning on nds32:
-ns16550.c:49: warning: passing argument 2 of 'writeb' makes pointer from integer without a cast
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/serial')
-rw-r--r-- | drivers/serial/ns16550.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/ns16550.c b/drivers/serial/ns16550.c index 87a0917..b2da8b3 100644 --- a/drivers/serial/ns16550.c +++ b/drivers/serial/ns16550.c @@ -46,7 +46,7 @@ void NS16550_init(NS16550_t com_port, int baud_divisor) defined(CONFIG_AM33XX) serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/ #endif - serial_out(UART_LCR_BKSE | UART_LCRVAL, (ulong)&com_port->lcr); + serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr); serial_out(0, &com_port->dll); serial_out(0, &com_port->dlm); serial_out(UART_LCRVAL, &com_port->lcr); |