mirror of
https://github.com/torvalds/linux.git
synced 2024-12-19 09:32:32 +00:00
staging: comedi: addi_apci_3xxx: remove 'i_IobaseReserved' from private data
This variable is not used by the driver. Remove it. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
088e2e053d
commit
9cfd70de79
@ -368,7 +368,6 @@ static const struct apci3xxx_boardinfo apci3xxx_boardtypes[] = {
|
||||
|
||||
struct apci3xxx_private {
|
||||
int iobase;
|
||||
int i_IobaseReserved;
|
||||
void __iomem *dw_AiBase;
|
||||
unsigned int ui_AiNbrofChannels; /* how many channels is measured */
|
||||
unsigned int ui_AiReadData[32];
|
||||
@ -613,7 +612,6 @@ static int apci3xxx_auto_attach(struct comedi_device *dev,
|
||||
dev->iobase = pci_resource_start(pcidev, 2);
|
||||
devpriv->iobase = pci_resource_start(pcidev, 2);
|
||||
devpriv->dw_AiBase = pci_ioremap_bar(pcidev, 3);
|
||||
devpriv->i_IobaseReserved = pci_resource_start(pcidev, 3);
|
||||
|
||||
if (pcidev->irq > 0) {
|
||||
ret = request_irq(pcidev->irq, apci3xxx_irq_handler,
|
||||
|
Loading…
Reference in New Issue
Block a user