Skip to content

Commit

Permalink
Staging: comedi: fix brace coding style issue in dt2817.c
Browse files Browse the repository at this point in the history
This is a patch to the dt2817.c file that fixes up all coding style
issues found by the checkpatch.pl tool

Signed-off-by: Sunny Aujla <sunnyfedora99@googlemail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Sunny Aujla authored and Greg Kroah-Hartman committed Aug 31, 2010
1 parent b0ea846 commit 8cbf7a9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions drivers/staging/comedi/drivers/dt2817.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ static int dt2817_dio_insn_config(struct comedi_device *dev,
return -EINVAL;

chan = CR_CHAN(insn->chanspec);
if (chan < 8) {
if (chan < 8)
mask = 0xff;
} else if (chan < 16) {
else if (chan < 16)
mask = 0xff00;
} else if (chan < 24) {
else if (chan < 24)
mask = 0xff0000;
} else
else
mask = 0xff000000;
if (data[0])
s->io_bits |= mask;
Expand Down Expand Up @@ -152,7 +152,7 @@ static int dt2817_attach(struct comedi_device *dev, struct comedi_devconfig *it)
unsigned long iobase;

iobase = it->options[0];
printk("comedi%d: dt2817: 0x%04lx ", dev->minor, iobase);
printk(KERN_INFO "comedi%d: dt2817: 0x%04lx ", dev->minor, iobase);
if (!request_region(iobase, DT2817_SIZE, "dt2817")) {
printk("I/O port conflict\n");
return -EIO;
Expand All @@ -177,14 +177,14 @@ static int dt2817_attach(struct comedi_device *dev, struct comedi_devconfig *it)
s->state = 0;
outb(0, dev->iobase + DT2817_CR);

printk("\n");
printk(KERN_INFO "\n");

return 0;
}

static int dt2817_detach(struct comedi_device *dev)
{
printk("comedi%d: dt2817: remove\n", dev->minor);
printk(KERN_INFO "comedi%d: dt2817: remove\n", dev->minor);

if (dev->iobase)
release_region(dev->iobase, DT2817_SIZE);
Expand Down

0 comments on commit 8cbf7a9

Please sign in to comment.