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

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

staging: comedi: adl_pci9118: rename interrupt_*() functions



For aesthetics, rename these functions so it they namespace associated
with the driver.

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 5c912f1f
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -614,7 +614,7 @@ static void pci9118_ai_munge(struct comedi_device *dev,
	}
}

static void interrupt_pci9118_ai_onesample(struct comedi_device *dev,
static void pci9118_ai_get_onesample(struct comedi_device *dev,
				     struct comedi_subdevice *s)
{
	struct pci9118_private *devpriv = dev->private;
@@ -631,7 +631,7 @@ static void interrupt_pci9118_ai_onesample(struct comedi_device *dev,
	}
}

static void interrupt_pci9118_ai_dma(struct comedi_device *dev,
static void pci9118_ai_get_dma(struct comedi_device *dev,
			       struct comedi_subdevice *s)
{
	struct pci9118_private *devpriv = dev->private;
@@ -757,9 +757,9 @@ static irqreturn_t pci9118_interrupt(int irq, void *d)
	}

	if (devpriv->usedma)
		interrupt_pci9118_ai_dma(dev, s);
		pci9118_ai_get_dma(dev, s);
	else
		interrupt_pci9118_ai_onesample(dev, s);
		pci9118_ai_get_onesample(dev, s);

interrupt_exit:
	comedi_handle_events(dev, s);