Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 324659
b: refs/heads/master
c: 9fcd485
h: refs/heads/master
i:
  324657: 36e7101
  324655: 039c80e
v: v3
  • Loading branch information
Ian Abbott authored and Greg Kroah-Hartman committed Sep 4, 2012
1 parent d6e4687 commit c27657e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 38 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: 383ecb88c1ec2b9875d4ab2d7dc1a818bce5a693
refs/heads/master: 9fcd4853f7c642cda6d5d84ba2236d0af7c38336
37 changes: 0 additions & 37 deletions trunk/drivers/staging/comedi/drivers/das08.c
Original file line number Diff line number Diff line change
Expand Up @@ -383,13 +383,8 @@ das08jr_ao_winsn(struct comedi_device *dev, struct comedi_subdevice *s,
chan = CR_CHAN(insn->chanspec);

for (n = 0; n < insn->n; n++) {
#if 0
outb(lsb, dev->iobase + devpriv->ao_offset_lsb[chan]);
outb(msb, dev->iobase + devpriv->ao_offset_msb[chan]);
#else
outb(lsb, dev->iobase + DAS08JR_AO_LSB(chan));
outb(msb, dev->iobase + DAS08JR_AO_MSB(chan));
#endif

/* load DACs */
inb(dev->iobase + DAS08JR_DIO);
Expand Down Expand Up @@ -418,13 +413,8 @@ das08ao_ao_winsn(struct comedi_device *dev, struct comedi_subdevice *s,
chan = CR_CHAN(insn->chanspec);

for (n = 0; n < insn->n; n++) {
#if 0
outb(lsb, dev->iobase + devpriv->ao_offset_lsb[chan]);
outb(msb, dev->iobase + devpriv->ao_offset_msb[chan]);
#else
outb(lsb, dev->iobase + DAS08AO_AO_LSB(chan));
outb(msb, dev->iobase + DAS08AO_AO_MSB(chan));
#endif

/* load DACs */
inb(dev->iobase + DAS08AO_AO_UPDATE);
Expand Down Expand Up @@ -613,14 +603,6 @@ static const struct das08_board_struct das08_boards[] = {
.i8254_offset = 4,
.iosize = 16, /* unchecked */
},
#if 0
{
.name = "das08/f",
},
{
.name = "das08jr",
},
#endif
{
.name = "das08jr/16",
.bustype = isa,
Expand All @@ -632,14 +614,6 @@ static const struct das08_board_struct das08_boards[] = {
.do_nchan = 8,
.iosize = 16, /* unchecked */
},
#if 0
{
.name = "das48-pga", /* cio-das48-pga.pdf */
},
{
.name = "das08-pga-g2", /* a KM board */
},
#endif
#endif /* IS_ENABLED(CONFIG_COMEDI_DAS08_ISA) */
#if IS_ENABLED(CONFIG_COMEDI_DAS08_PCI)
{
Expand Down Expand Up @@ -794,17 +768,6 @@ static int das08_pci_attach_common(struct comedi_device *dev,
dev_info(dev->class_dev, "pcibase 0x%lx iobase 0x%lx\n",
pci_iobase, iobase);
devpriv->pci_iobase = pci_iobase;
#if 0
/* We could enable pci-das08's interrupt here to make it possible
* to do timed input in this driver, but there is little point since
* conversions would have to be started by the interrupt handler
* so you might as well use comedi_rt_timer to emulate commands
*/
/* set source of interrupt trigger to counter2 output */
outb(CNTRL_INTR | CNTRL_DIR, pci_iobase + CNTRL);
/* Enable local interrupt 1 and pci interrupt */
outw(INTR1_ENABLE | PCI_INTR_ENABLE, pci_iobase + INTCSR);
#endif
return das08_common_attach(dev, iobase);
}

Expand Down

0 comments on commit c27657e

Please sign in to comment.