Commit 3e8d4e20 authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

serial: Coding style

Coding style tweaks and printk levels.
Signed-off-by: default avatarAlan Cox <alan@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 6d4d67be
...@@ -2047,7 +2047,7 @@ serial8250_set_termios(struct uart_port *port, struct ktermios *termios, ...@@ -2047,7 +2047,7 @@ serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
* Oxford Semi 952 rev B workaround * Oxford Semi 952 rev B workaround
*/ */
if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0) if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
quot ++; quot++;
if (up->capabilities & UART_CAP_FIFO && up->port.fifosize > 1) { if (up->capabilities & UART_CAP_FIFO && up->port.fifosize > 1) {
if (baud < 2400) if (baud < 2400)
......
...@@ -414,7 +414,8 @@ static int __devinit check_resources(struct pnp_option *option) ...@@ -414,7 +414,8 @@ static int __devinit check_resources(struct pnp_option *option)
*/ */
static int __devinit serial_pnp_guess_board(struct pnp_dev *dev, int *flags) static int __devinit serial_pnp_guess_board(struct pnp_dev *dev, int *flags)
{ {
if (!(check_name(pnp_dev_name(dev)) || (dev->card && check_name(dev->card->name)))) if (!(check_name(pnp_dev_name(dev)) ||
(dev->card && check_name(dev->card->name))))
return -ENODEV; return -ENODEV;
if (check_resources(dev->independent)) if (check_resources(dev->independent))
...@@ -452,7 +453,8 @@ serial_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id) ...@@ -452,7 +453,8 @@ serial_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id)
return -ENODEV; return -ENODEV;
#ifdef SERIAL_DEBUG_PNP #ifdef SERIAL_DEBUG_PNP
printk("Setup PNP port: port %x, mem 0x%lx, irq %d, type %d\n", printk(KERN_DEBUG
"Setup PNP port: port %x, mem 0x%lx, irq %d, type %d\n",
port.iobase, port.mapbase, port.irq, port.iotype); port.iobase, port.mapbase, port.irq, port.iotype);
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment