Browse Source

staging: comedi: addi_apci_1032: call v_APCI1032_Interrupt() directly

Remove the boardinfo about the 'interrupt' function and just call
it directly.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
H Hartley Sweeten 12 years ago
parent
commit
feae759ffe
1 changed files with 1 additions and 5 deletions
  1. 1 5
      drivers/staging/comedi/drivers/addi_apci_1032.c

+ 1 - 5
drivers/staging/comedi/drivers/addi_apci_1032.c

@@ -14,16 +14,12 @@ static const struct addi_board apci1032_boardtypes[] = {
 		.i_PCIEeprom		= ADDIDATA_EEPROM,
 		.pc_EepromChip		= ADDIDATA_93C76,
 		.i_NbrDiChannel		= 32,
-		.interrupt		= v_APCI1032_Interrupt,
 	},
 };
 
 static irqreturn_t v_ADDI_Interrupt(int irq, void *d)
 {
-	struct comedi_device *dev = d;
-	const struct addi_board *this_board = comedi_board(dev);
-
-	this_board->interrupt(irq, d);
+	v_APCI1032_Interrupt(irq, d);
 	return IRQ_RETVAL(1);
 }