staging: vt6655: device_get_pci_info remove variable cis_addr.

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>
This commit is contained in:
Malcolm Priestley 2015-09-12 19:10:35 +01:00 committed by Greg Kroah-Hartman
parent 7a95f96108
commit 2ef1571b13

View 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);