diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2007-10-13 22:37:02 -0600 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-14 08:57:30 -0700 |
commit | 5dd80d5d096f58b7a83ae493a20bfc9d0de30226 (patch) | |
tree | 31f8ecf8d759660d7c11b0d4cea11a9ea4f5164b /drivers/serial | |
parent | 80d4b4169e46949e1919d470ebc508cf4fbf0996 (diff) | |
download | linux-3.10-5dd80d5d096f58b7a83ae493a20bfc9d0de30226.tar.gz linux-3.10-5dd80d5d096f58b7a83ae493a20bfc9d0de30226.tar.bz2 linux-3.10-5dd80d5d096f58b7a83ae493a20bfc9d0de30226.zip |
mpc52xx-uart: fix compile warning (format type mismatch)
Trivial compile warning fix
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/serial')
-rw-r--r-- | drivers/serial/mpc52xx_uart.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/serial/mpc52xx_uart.c b/drivers/serial/mpc52xx_uart.c index 035cca02819..ec36ad78d2f 100644 --- a/drivers/serial/mpc52xx_uart.c +++ b/drivers/serial/mpc52xx_uart.c @@ -756,8 +756,8 @@ mpc52xx_console_setup(struct console *co, char *options) if (port->membase == NULL) return -EINVAL; - pr_debug("mpc52xx-psc uart at %lx, mapped to %p, irq=%x, freq=%i\n", - port->mapbase, port->membase, port->irq, port->uartclk); + pr_debug("mpc52xx-psc uart at %p, mapped to %p, irq=%x, freq=%i\n", + (void*)port->mapbase, port->membase, port->irq, port->uartclk); /* Setup the port parameters accoding to options */ if (options) @@ -974,8 +974,8 @@ mpc52xx_uart_of_probe(struct of_device *op, const struct of_device_id *match) port->mapbase = res.start; port->irq = irq_of_parse_and_map(op->node, 0); - dev_dbg(&op->dev, "mpc52xx-psc uart at %lx, irq=%x, freq=%i\n", - port->mapbase, port->irq, port->uartclk); + dev_dbg(&op->dev, "mpc52xx-psc uart at %p, irq=%x, freq=%i\n", + (void*)port->mapbase, port->irq, port->uartclk); if ((port->irq==NO_IRQ) || !port->mapbase) { printk(KERN_ERR "Could not allocate resources for PSC\n"); |