Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 318117
b: refs/heads/master
c: b694c4f
h: refs/heads/master
i:
  318115: 2c9e542
v: v3
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Jul 19, 2012
1 parent 2f5e84e commit 52b1170
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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: 87790601cc603ea657fa667dd329fb21f318dfa9
refs/heads/master: b694c4f4339bf4126e944def8318ff4f5cfbee76
10 changes: 5 additions & 5 deletions trunk/drivers/staging/comedi/drivers/dyna_pci10xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ struct dyna_pci10xx_private {
struct mutex mutex;

/* device base address registers */
unsigned long BADR2, BADR3;
unsigned long BADR3;
};

#define thisboard ((const struct boardtype *)dev->board_ptr)
Expand Down Expand Up @@ -132,11 +132,11 @@ static int dyna_pci10xx_insn_read_ai(struct comedi_device *dev,
for (n = 0; n < insn->n; n++) {
/* trigger conversion */
smp_mb();
outw_p(0x0000 + range + chan, devpriv->BADR2 + 2);
outw_p(0x0000 + range + chan, dev->iobase + 2);
udelay(10);
/* read data */
for (counter = 0; counter < READ_TIMEOUT; counter++) {
d = inw_p(devpriv->BADR2);
d = inw_p(dev->iobase);

/* check if read is successful if the EOC bit is set */
if (d & (1 << 15))
Expand Down Expand Up @@ -172,7 +172,7 @@ static int dyna_pci10xx_insn_write_ao(struct comedi_device *dev,
for (n = 0; n < insn->n; n++) {
smp_mb();
/* trigger conversion and write data */
outw_p(data[n], devpriv->BADR2);
outw_p(data[n], dev->iobase);
udelay(10);
}
mutex_unlock(&devpriv->mutex);
Expand Down Expand Up @@ -288,7 +288,7 @@ static int dyna_pci10xx_attach(struct comedi_device *dev,

printk(KERN_INFO "comedi: dyna_pci10xx: device found!\n");

devpriv->BADR2 = pci_resource_start(pcidev, 2);
dev->iobase = pci_resource_start(pcidev, 2);
devpriv->BADR3 = pci_resource_start(pcidev, 3);

ret = comedi_alloc_subdevices(dev, 4);
Expand Down

0 comments on commit 52b1170

Please sign in to comment.