staging: comedi: gsc_hpdi: rename hpdi_find_board()

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:
H Hartley Sweeten 2014-03-13 14:16:21 -07:00 committed by Greg Kroah-Hartman
parent 1335cee5d2
commit 6a23558b34

View File

@ -631,7 +631,7 @@ static void init_plx9080(struct comedi_device *dev)
writel(bits, plx_iobase + PLX_DMA0_MODE_REG);
}
static const struct hpdi_board *hpdi_find_board(struct pci_dev *pcidev)
static const struct hpdi_board *gsc_hpdi_find_board(struct pci_dev *pcidev)
{
unsigned int i;
@ -652,7 +652,7 @@ static int gsc_hpdi_auto_attach(struct comedi_device *dev,
int i;
int retval;
thisboard = hpdi_find_board(pcidev);
thisboard = gsc_hpdi_find_board(pcidev);
if (!thisboard) {
dev_err(dev->class_dev, "gsc_hpdi: pci %s not supported\n",
pci_name(pcidev));