mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-03 09:41:54 +09:00
staging: comedi: me_daq: pass on the error from comedi_pci_enable()
Instead of returning -EIO when comedi_pci_enable() fails, pass on the actual error code. Also, remove the kernel noise when the function fails. 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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
4bb153b4e4
commit
4ae7642233
@@ -653,12 +653,9 @@ static int me_attach_pci(struct comedi_device *dev, struct pci_dev *pcidev)
|
||||
return -ENOMEM;
|
||||
dev->private = dev_private;
|
||||
|
||||
/* Enable PCI device and request PCI regions */
|
||||
if (comedi_pci_enable(pcidev, dev->board_name) < 0) {
|
||||
dev_err(dev->class_dev,
|
||||
"Failed to enable PCI device and request regions\n");
|
||||
return -EIO;
|
||||
}
|
||||
ret = comedi_pci_enable(pcidev, dev->board_name);
|
||||
if (ret)
|
||||
return ret;
|
||||
dev->iobase = 1; /* detach needs this */
|
||||
|
||||
/* Read PLX register base address [PCI_BASE_ADDRESS #0]. */
|
||||
|
||||
Reference in New Issue
Block a user