From: H Hartley Sweeten Date: Fri, 18 Jan 2013 00:39:06 +0000 (-0700) Subject: staging: comedi: addi_apci_2200: don't read the unused PCI bars X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=c64f13006d04c7f0c4ecbfcaf1c02f91ecd0b207;p=deliverable%2Flinux.git staging: comedi: addi_apci_2200: don't read the unused PCI bars This driver only uses PCI bar 1 (dev->iobase), don't bother reading the unused PCI bars. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/addi_apci_2200.c b/drivers/staging/comedi/drivers/addi_apci_2200.c index cd1ac415a705..490870bfee91 100644 --- a/drivers/staging/comedi/drivers/addi_apci_2200.c +++ b/drivers/staging/comedi/drivers/addi_apci_2200.c @@ -85,9 +85,6 @@ static int apci2200_auto_attach(struct comedi_device *dev, return ret; dev->iobase = pci_resource_start(pcidev, 1); - devpriv->i_IobaseAmcc = pci_resource_start(pcidev, 0); - devpriv->i_IobaseAddon = pci_resource_start(pcidev, 2); - devpriv->i_IobaseReserved = pci_resource_start(pcidev, 3); /* Initialize parameters that can be overridden in EEPROM */ devpriv->s_EeParameters.i_NbrAiChannel = this_board->i_NbrAiChannel;