Skip to content

Commit

Permalink
staging: comedi: adl_pci9111: remove pci9111_software_trigger macro
Browse files Browse the repository at this point in the history
This macro relies on a local variable having a specific name.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
H Hartley Sweeten dev authored and Greg Kroah-Hartman committed Sep 11, 2012
1 parent 9676437 commit 3eb60d7
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions drivers/staging/comedi/drivers/adl_pci9111.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ a multiple of chanlist_len*convert_arg.
#define PCI9111_RANGE_STATUS_REG 0x08
#define PCI9111_REGISTER_TRIGGER_MODE_CONTROL 0x0A
#define PCI9111_REGISTER_AD_MODE_INTERRUPT_READBACK 0x0A
#define PCI9111_REGISTER_SOFTWARE_TRIGGER 0x0E
#define PCI9111_SOFTWARE_TRIGGER_REG 0x0E
#define PCI9111_REGISTER_INTERRUPT_CONTROL 0x0C
#define PCI9111_8254_BASE_REG 0x40
#define PCI9111_REGISTER_INTERRUPT_CLEAR 0x48
Expand Down Expand Up @@ -149,9 +149,6 @@ a multiple of chanlist_len*convert_arg.
#define pci9111_interrupt_clear() \
outb(0, dev->iobase + PCI9111_REGISTER_INTERRUPT_CLEAR)

#define pci9111_software_trigger() \
outb(0, dev->iobase + PCI9111_REGISTER_SOFTWARE_TRIGGER)

#define pci9111_fifo_reset() do { \
outb(PCI9111_FFEN_SET_FIFO_ENABLE, \
dev->iobase + PCI9111_REGISTER_INTERRUPT_CONTROL); \
Expand Down Expand Up @@ -853,7 +850,8 @@ static int pci9111_ai_insn_read(struct comedi_device *dev,
pci9111_fifo_reset();

for (i = 0; i < insn->n; i++) {
pci9111_software_trigger();
/* Generate a software trigger */
outb(0, dev->iobase + PCI9111_SOFTWARE_TRIGGER_REG);

timeout = PCI9111_AI_INSTANT_READ_TIMEOUT;

Expand Down

0 comments on commit 3eb60d7

Please sign in to comment.