Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 186851
b: refs/heads/master
c: dedf3ad
h: refs/heads/master
i:
  186849: ce77aa5
  186847: 69db7a6
v: v3
  • Loading branch information
Benjamin Adolphi authored and Greg Kroah-Hartman committed Mar 4, 2010
1 parent 12b1663 commit 951fb19
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 52d83bde6f10480268c454b3373bfcec8c2e3c3e
refs/heads/master: dedf3ad1534ff5e30a2eba88afe64bbe7beecfb6
19 changes: 9 additions & 10 deletions trunk/drivers/staging/comedi/drivers/pcmad.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ Configuration options:
[0] - I/O port base
[1] - unused
[2] - Analog input reference
0 = single ended
1 = differential
0 = single ended
1 = differential
[3] - Analog input encoding (must match jumpers)
0 = straight binary
1 = two's complement
0 = straight binary
1 = two's complement
*/

#include <linux/interrupt.h>
Expand Down Expand Up @@ -113,9 +113,8 @@ static int pcmad_ai_insn_read(struct comedi_device *dev,
data[n] = inb(dev->iobase + PCMAD_LSB);
data[n] |= (inb(dev->iobase + PCMAD_MSB) << 8);

if (devpriv->twos_comp) {
if (devpriv->twos_comp)
data[n] ^= (1 << (this_board->n_ai_bits - 1));
}
}

return n;
Expand All @@ -135,7 +134,7 @@ static int pcmad_attach(struct comedi_device *dev, struct comedi_devconfig *it)
unsigned long iobase;

iobase = it->options[0];
printk("comedi%d: pcmad: 0x%04lx ", dev->minor, iobase);
printk(KERN_INFO "comedi%d: pcmad: 0x%04lx ", dev->minor, iobase);
if (!request_region(iobase, PCMAD_SIZE, "pcmad")) {
printk("I/O port conflict\n");
return -EIO;
Expand Down Expand Up @@ -166,11 +165,11 @@ static int pcmad_attach(struct comedi_device *dev, struct comedi_devconfig *it)

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

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

if (dev->iobase)
release_region(dev->iobase, PCMAD_SIZE);

Expand Down

0 comments on commit 951fb19

Please sign in to comment.