From: H Hartley Sweeten Date: Mon, 10 Nov 2014 23:20:20 +0000 (-0700) Subject: staging: comedi: addi_apci_1564: enable support for PLD Rev 1.0 I/O mapping X-Git-Tag: firefly_0821_release~176^2~2665^2~158 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e8dbe0c4c2566c4db885c24dbc1f603d9c703b41;p=firefly-linux-kernel-4.4.55.git staging: comedi: addi_apci_1564: enable support for PLD Rev 1.0 I/O mapping Remove the error return in the (*auto_attach) and allow the driver to attach to APC-1564 boards that use the PLD Rev 1.0 I/O mapping. Signed-off-by: H Hartley Sweeten Reviewed-by: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/addi_apci_1564.c b/drivers/staging/comedi/drivers/addi_apci_1564.c index 18f38f00fb12..6872b69da5db 100644 --- a/drivers/staging/comedi/drivers/addi_apci_1564.c +++ b/drivers/staging/comedi/drivers/addi_apci_1564.c @@ -454,9 +454,6 @@ static int apci1564_auto_attach(struct comedi_device *dev, dev->iobase = pci_resource_start(pcidev, 1) + APCI1564_REV1_MAIN_IOBASE; devpriv->timer = devpriv->eeprom + APCI1564_REV1_TIMER_IOBASE; - dev_err(dev->class_dev, - "PLD Revision 1.0 detected, not yet supported\n"); - return -ENXIO; } else { /* PLD Revision 2.x I/O Mapping */ dev->iobase = devpriv->eeprom + APCI1564_REV2_MAIN_IOBASE;