Commit 40cfdb95 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: ni_daq_700: remove the #ifdef'ed out irq code

The irq code is not compiled in due to the '#ifdef incomplete'.
And, as stated, it's not even complete. Just remove it.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Cc: Frank Mori Hess <fmhess@users.sourceforge.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent be7085ae
...@@ -37,8 +37,6 @@ port, bit 0; channel 8 corresponds to the input port, bit 0. ...@@ -37,8 +37,6 @@ port, bit 0; channel 8 corresponds to the input port, bit 0.
Direction configuration: channels 0-7 output, 8-15 input (8225 device Direction configuration: channels 0-7 output, 8-15 input (8225 device
emu as port A output, port B input, port C N/A). emu as port A output, port B input, port C N/A).
IRQ is assigned but not used.
*/ */
#include <linux/interrupt.h> #include <linux/interrupt.h>
...@@ -107,9 +105,6 @@ static int dio700_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -107,9 +105,6 @@ static int dio700_attach(struct comedi_device *dev, struct comedi_devconfig *it)
const struct dio700_board *thisboard = comedi_board(dev); const struct dio700_board *thisboard = comedi_board(dev);
struct comedi_subdevice *s; struct comedi_subdevice *s;
unsigned long iobase = 0; unsigned long iobase = 0;
#ifdef incomplete
unsigned int irq = 0;
#endif
struct pcmcia_device *link; struct pcmcia_device *link;
int ret; int ret;
...@@ -117,19 +112,9 @@ static int dio700_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -117,19 +112,9 @@ static int dio700_attach(struct comedi_device *dev, struct comedi_devconfig *it)
if (!link) if (!link)
return -EIO; return -EIO;
iobase = link->resource[0]->start; iobase = link->resource[0]->start;
#ifdef incomplete
irq = link->irq;
#endif
printk(KERN_ERR "comedi%d: ni_daq_700: %s, io 0x%lx", dev->minor, printk(KERN_ERR "comedi%d: ni_daq_700: %s, io 0x%lx\n", dev->minor,
thisboard->name, iobase); thisboard->name, iobase);
#ifdef incomplete
if (irq)
printk(", irq %u", irq);
#endif
printk("\n");
if (iobase == 0) { if (iobase == 0) {
printk(KERN_ERR "io base address is zero!\n"); printk(KERN_ERR "io base address is zero!\n");
...@@ -138,11 +123,6 @@ static int dio700_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -138,11 +123,6 @@ static int dio700_attach(struct comedi_device *dev, struct comedi_devconfig *it)
dev->iobase = iobase; dev->iobase = iobase;
#ifdef incomplete
/* grab our IRQ */
dev->irq = irq;
#endif
dev->board_name = thisboard->name; dev->board_name = thisboard->name;
ret = comedi_alloc_subdevices(dev, 1); ret = comedi_alloc_subdevices(dev, 1);
...@@ -167,8 +147,7 @@ static int dio700_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -167,8 +147,7 @@ static int dio700_attach(struct comedi_device *dev, struct comedi_devconfig *it)
static void dio700_detach(struct comedi_device *dev) static void dio700_detach(struct comedi_device *dev)
{ {
if (dev->irq) /* nothing to cleanup */
free_irq(dev->irq, dev);
}; };
static const struct dio700_board dio700_boards[] = { static const struct dio700_board dio700_boards[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment