aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/serial
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2008-10-13 05:35:42 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2008-10-13 12:51:39 -0400
commit9bde10a4b8c54804236d3d6b4b75e98825a921e7 (patch)
tree6557cde0f05b0633910bf5e6c34b1b661b2ac05b /drivers/serial
parent716da631ae91fc5e9f8d5815f8ef5fbfed862b80 (diff)
serial-make-uart_ports-ioport-unsigned-long-fix
Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Alan Cox <alan@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/serial')
-rw-r--r--drivers/serial/serial_core.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/serial/serial_core.c b/drivers/serial/serial_core.c
index f977c98cfa9..308588e2072 100644
--- a/drivers/serial/serial_core.c
+++ b/drivers/serial/serial_core.c
@@ -2154,12 +2154,11 @@ uart_report_port(struct uart_driver *drv, struct uart_port *port)
2154 2154
2155 switch (port->iotype) { 2155 switch (port->iotype) {
2156 case UPIO_PORT: 2156 case UPIO_PORT:
2157 snprintf(address, sizeof(address), 2157 snprintf(address, sizeof(address), "I/O 0x%lx", port->iobase);
2158 "I/O 0x%x", port->iobase);
2159 break; 2158 break;
2160 case UPIO_HUB6: 2159 case UPIO_HUB6:
2161 snprintf(address, sizeof(address), 2160 snprintf(address, sizeof(address),
2162 "I/O 0x%x offset 0x%x", port->iobase, port->hub6); 2161 "I/O 0x%lx offset 0x%x", port->iobase, port->hub6);
2163 break; 2162 break;
2164 case UPIO_MEM: 2163 case UPIO_MEM:
2165 case UPIO_MEM32: 2164 case UPIO_MEM32: