Commit b055d0d3 authored by Daniel Patrick Johnson's avatar Daniel Patrick Johnson Committed by Greg Kroah-Hartman

Staging: comedi: ni_mio_cs.c: coding style cleanup

Signed-off-by: default avatarDaniel Patrick Johnson <teknotus@teknot.us>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 828684f9
...@@ -250,9 +250,8 @@ static int mio_cs_detach(struct comedi_device *dev) ...@@ -250,9 +250,8 @@ static int mio_cs_detach(struct comedi_device *dev)
/* PCMCIA layer frees the IO region */ /* PCMCIA layer frees the IO region */
if (dev->irq) { if (dev->irq)
free_irq(dev->irq, dev); free_irq(dev->irq, dev);
}
return 0; return 0;
} }
...@@ -293,9 +292,8 @@ static void cs_detach(struct pcmcia_device *link) ...@@ -293,9 +292,8 @@ static void cs_detach(struct pcmcia_device *link)
{ {
DPRINTK("cs_detach(link=%p)\n", link); DPRINTK("cs_detach(link=%p)\n", link);
if (link->dev_node) { if (link->dev_node)
cs_release(link); cs_release(link);
}
} }
static int mio_cs_suspend(struct pcmcia_device *link) static int mio_cs_suspend(struct pcmcia_device *link)
...@@ -387,9 +385,8 @@ static int mio_cs_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -387,9 +385,8 @@ static int mio_cs_attach(struct comedi_device *dev, struct comedi_devconfig *it)
} }
printk("\n"); printk("\n");
printk(" board fingerprint (windowed):"); printk(" board fingerprint (windowed):");
for (i = 0; i < 10; i++) { for (i = 0; i < 10; i++)
printk(" 0x%04x", win_in(i)); printk(" 0x%04x", win_in(i));
}
printk("\n"); printk("\n");
} }
#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