staging: comedi: gsc_hpdi: rename init_hpdi()
authorH Hartley Sweeten <hartleys@visionengravers.com>
Thu, 13 Mar 2014 21:16:23 +0000 (14:16 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 17 Mar 2014 21:19:50 +0000 (14:19 -0700)
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>
drivers/staging/comedi/drivers/gsc_hpdi.c

index 177d782..d9b1491 100644 (file)
@@ -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)