1
0
Fork 0

staging: comedi: gsc_hpdi: rename hpdi_cancel()

For aesthetics, rename this function so it has namespace associated
with the driver.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
H Hartley Sweeten 2014-03-13 14:16:16 -07:00 committed by Greg Kroah-Hartman
parent 6b0cca01ac
commit 3547473931
1 changed files with 3 additions and 2 deletions

View File

@ -354,7 +354,8 @@ static void abort_dma(struct comedi_device *dev, unsigned int channel)
spin_unlock_irqrestore(&dev->spinlock, flags);
}
static int hpdi_cancel(struct comedi_device *dev, struct comedi_subdevice *s)
static int gsc_hpdi_cancel(struct comedi_device *dev,
struct comedi_subdevice *s)
{
struct hpdi_private *devpriv = dev->private;
@ -729,7 +730,7 @@ static int hpdi_auto_attach(struct comedi_device *dev,
s->insn_config = gsc_hpdi_dio_insn_config;
s->do_cmd = gsc_hpdi_cmd;
s->do_cmdtest = gsc_hpdi_cmd_test;
s->cancel = hpdi_cancel;
s->cancel = gsc_hpdi_cancel;
return init_hpdi(dev);
}