Commit 0a5aed48 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: cb_pcidas: 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(), and
to request_irq() instead of the open coded "cb_pcidas".
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b8ac8c63
...@@ -1567,7 +1567,7 @@ static int cb_pcidas_attach(struct comedi_device *dev, ...@@ -1567,7 +1567,7 @@ static int cb_pcidas_attach(struct comedi_device *dev,
return -EIO; return -EIO;
thisboard = comedi_board(dev); thisboard = comedi_board(dev);
if (comedi_pci_enable(devpriv->pci_dev, "cb_pcidas")) { if (comedi_pci_enable(devpriv->pci_dev, dev->driver->driver_name)) {
dev_err(dev->class_dev, dev_err(dev->class_dev,
"Failed to enable PCI device and request regions\n"); "Failed to enable PCI device and request regions\n");
return -EIO; return -EIO;
...@@ -1585,7 +1585,7 @@ static int cb_pcidas_attach(struct comedi_device *dev, ...@@ -1585,7 +1585,7 @@ static int cb_pcidas_attach(struct comedi_device *dev,
devpriv->s5933_config + AMCC_OP_REG_INTCSR); devpriv->s5933_config + AMCC_OP_REG_INTCSR);
if (request_irq(devpriv->pci_dev->irq, cb_pcidas_interrupt, if (request_irq(devpriv->pci_dev->irq, cb_pcidas_interrupt,
IRQF_SHARED, "cb_pcidas", dev)) { IRQF_SHARED, dev->driver->driver_name, dev)) {
dev_dbg(dev->class_dev, "unable to allocate irq %d\n", dev_dbg(dev->class_dev, "unable to allocate irq %d\n",
devpriv->pci_dev->irq); devpriv->pci_dev->irq);
return -EINVAL; return -EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment