Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 32d878a2 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman
Browse files

staging: comedi: ni_mio_common drivers: remove NI_E_IRQ_FLAGS defines



These defines are only used in the request_irq() calls. Remove them
and just open code the values.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 614b5cf0
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -266,8 +266,6 @@ static const int ni_irqpin[] = {

#define IRQ_POLARITY 0

#define NI_E_IRQ_FLAGS		0

#include "ni_mio_common.c"

static struct pnp_device_id device_ids[] = {
@@ -392,7 +390,7 @@ static int ni_atmio_attach(struct comedi_device *dev,
			return -EINVAL;
		}
		printk(" ( irq = %u )", irq);
		ret = request_irq(irq, ni_E_interrupt, NI_E_IRQ_FLAGS,
		ret = request_irq(irq, ni_E_interrupt, 0,
				  "ni_atmio", dev);

		if (ret < 0) {
+1 −3
Original line number Diff line number Diff line
@@ -1044,8 +1044,6 @@ static const struct ni_board_struct ni_boards[] = {

#define IRQ_POLARITY 1

#define NI_E_IRQ_FLAGS		IRQF_SHARED

#include "ni_mio_common.c"

static int pcimio_ai_change(struct comedi_device *dev,
@@ -1267,7 +1265,7 @@ static int pcimio_auto_attach(struct comedi_device *dev,

	irq = mite_irq(devpriv->mite);
	if (irq) {
		ret = request_irq(irq, ni_E_interrupt, NI_E_IRQ_FLAGS,
		ret = request_irq(irq, ni_E_interrupt, IRQF_SHARED,
				  dev->board_name, dev);
		if (ret == 0)
			dev->irq = irq;