mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 15:13:44 -04:00
staging: comedi: addi_apci_1500: remove private data 'i_IobaseReserved'
This member of the private data is set but 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:
committed by
Greg Kroah-Hartman
parent
c80a255e4a
commit
aa6d4eb215
@@ -18,7 +18,6 @@
|
||||
struct apci1500_private {
|
||||
int i_IobaseAmcc;
|
||||
int i_IobaseAddon;
|
||||
int i_IobaseReserved;
|
||||
unsigned char b_OutputMemoryStatus;
|
||||
struct task_struct *tsk_Current;
|
||||
};
|
||||
@@ -44,7 +43,6 @@ static int apci1500_auto_attach(struct comedi_device *dev,
|
||||
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);
|
||||
|
||||
if (pcidev->irq > 0) {
|
||||
ret = request_irq(pcidev->irq, apci1500_interrupt, IRQF_SHARED,
|
||||
|
||||
Reference in New Issue
Block a user