Skip to content

Commit

Permalink
Staging: comedi: ni_mio_cs.c: coding style cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Patrick Johnson <teknotus@teknot.us>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Daniel Patrick Johnson authored and Greg Kroah-Hartman committed Dec 11, 2009
1 parent 828684f commit b055d0d
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions drivers/staging/comedi/drivers/ni_mio_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,8 @@ static int mio_cs_detach(struct comedi_device *dev)

/* PCMCIA layer frees the IO region */

if (dev->irq) {
if (dev->irq)
free_irq(dev->irq, dev);
}

return 0;
}
Expand Down Expand Up @@ -293,9 +292,8 @@ static void cs_detach(struct pcmcia_device *link)
{
DPRINTK("cs_detach(link=%p)\n", link);

if (link->dev_node) {
if (link->dev_node)
cs_release(link);
}
}

static int mio_cs_suspend(struct pcmcia_device *link)
Expand Down Expand Up @@ -387,9 +385,8 @@ static int mio_cs_attach(struct comedi_device *dev, struct comedi_devconfig *it)
}
printk("\n");
printk(" board fingerprint (windowed):");
for (i = 0; i < 10; i++) {
for (i = 0; i < 10; i++)
printk(" 0x%04x", win_in(i));
}
printk("\n");
}
#endif
Expand Down

0 comments on commit b055d0d

Please sign in to comment.