mirror of https://gitee.com/openkylin/linux.git
staging: comedi: gsc_hpdi: rename init_hpdi()
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>
This commit is contained in:
parent
201a81437c
commit
63da0d087c
|
@ -562,7 +562,7 @@ static int gsc_hpdi_dio_insn_config(struct comedi_device *dev,
|
|||
return insn->n;
|
||||
}
|
||||
|
||||
static int init_hpdi(struct comedi_device *dev)
|
||||
static int gsc_hpdi_init(struct comedi_device *dev)
|
||||
{
|
||||
struct hpdi_private *devpriv = dev->private;
|
||||
uint32_t plx_intcsr_bits;
|
||||
|
@ -730,7 +730,7 @@ static int gsc_hpdi_auto_attach(struct comedi_device *dev,
|
|||
s->do_cmdtest = gsc_hpdi_cmd_test;
|
||||
s->cancel = gsc_hpdi_cancel;
|
||||
|
||||
return init_hpdi(dev);
|
||||
return gsc_hpdi_init(dev);
|
||||
}
|
||||
|
||||
static void gsc_hpdi_detach(struct comedi_device *dev)
|
||||
|
|
Loading…
Reference in New Issue