Staging: comedi: Remove pci9111_ISC0_sources typedef

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Bill Pemberton 2009-03-16 22:07:41 -04:00 committed by Greg Kroah-Hartman
parent 655f78f6aa
commit 3ba97b3c62

View File

@ -489,10 +489,10 @@ static void pci9111_autoscan_set(struct comedi_device * dev, bool autoscan)
pci9111_trigger_and_autoscan_set(flags); pci9111_trigger_and_autoscan_set(flags);
} }
typedef enum { enum pci9111_ISC0_sources {
irq_on_eoc, irq_on_eoc,
irq_on_fifo_half_full irq_on_fifo_half_full
} pci9111_ISC0_sources; };
typedef enum { typedef enum {
irq_on_timer_tick, irq_on_timer_tick,
@ -500,7 +500,7 @@ typedef enum {
} pci9111_ISC1_sources; } pci9111_ISC1_sources;
static void pci9111_interrupt_source_set(struct comedi_device * dev, static void pci9111_interrupt_source_set(struct comedi_device * dev,
pci9111_ISC0_sources irq_0_source, pci9111_ISC1_sources irq_1_source) enum pci9111_ISC0_sources irq_0_source, pci9111_ISC1_sources irq_1_source)
{ {
int flags; int flags;