OSDN Git Service

staging: vt6655: device_get_pci_info remove variable cis_addr.
authorMalcolm Priestley <tvboxspy@gmail.com>
Sat, 12 Sep 2015 18:10:35 +0000 (19:10 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 14 Sep 2015 15:50:45 +0000 (08:50 -0700)
cis_addr is never used remove its call to pci_resource_start.

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6655/device_main.c

index 1e660cc..17fa6aa 100644 (file)
@@ -434,15 +434,12 @@ static bool device_get_pci_info(struct vnt_private *pDevice,
                                struct pci_dev *pcid)
 {
        u8  b;
-       unsigned int cis_addr;
 
        pci_set_master(pcid);
 
        pDevice->memaddr = pci_resource_start(pcid, 0);
        pDevice->ioaddr = pci_resource_start(pcid, 1);
 
-       cis_addr = pci_resource_start(pcid, 2);
-
        pDevice->pcid = pcid;
 
        pci_read_config_byte(pcid, PCI_COMMAND, &b);