serial: Coding style
Coding style tweaks and printk levels. Signed-off-by: Alan Cox <alan@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
6d4d67beb9
commit
3e8d4e2075
2 changed files with 7 additions and 5 deletions
|
@ -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)
|
||||
{
|
||||
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;
|
||||
|
||||
if (check_resources(dev->independent))
|
||||
|
@ -452,7 +453,8 @@ serial_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id)
|
|||
return -ENODEV;
|
||||
|
||||
#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);
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue