summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH Hartley Sweeten <hartleys@visionengravers.com>2012-06-28 02:08:39 +0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-07-07 02:40:07 +0400
commit404f99910eb06b92e034112533bab997569dc0d4 (patch)
tree52b6bada11b11178b5df562bdb31bf225704a6fc
parent2d993c242fea1dc41395a40fd7001127afa3b090 (diff)
downloadlinux-404f99910eb06b92e034112533bab997569dc0d4.tar.xz
staging: comedi: adl_pci6208: use the driver_name for the resource name
Use the dev->driver->driver_name for the resource name passed to pci_request_regions(), by way of comedi_pci_enable(), instead of the open coded string "adl_pci6208". Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/comedi/drivers/adl_pci6208.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/comedi/drivers/adl_pci6208.c b/drivers/staging/comedi/drivers/adl_pci6208.c
index cb14ffd9967e..487fd4a8124a 100644
--- a/drivers/staging/comedi/drivers/adl_pci6208.c
+++ b/drivers/staging/comedi/drivers/adl_pci6208.c
@@ -215,7 +215,7 @@ static int pci6208_attach(struct comedi_device *dev,
dev->board_name = thisboard->name;
- ret = comedi_pci_enable(devpriv->pci_dev, "adl_pci6208");
+ ret = comedi_pci_enable(devpriv->pci_dev, dev->driver->driver_name);
if (ret) {
dev_err(dev->class_dev,
"Failed to enable PCI device and request regions\n");