summaryrefslogtreecommitdiffstats
path: root/arch/x86/pci
diff options
context:
space:
mode:
authorTaku Izumi2012-10-30 07:26:18 +0100
committerBjorn Helgaas2012-11-07 17:43:28 +0100
commit642c92da36ae0bed3c31fdd408411ab95f4e326b (patch)
tree28519422f156133241851c29dac86ed451e00018 /arch/x86/pci
parentPCI/ACPI: Add _PRT interrupt routing info before enumerating devices (diff)
downloadkernel-qcow2-linux-642c92da36ae0bed3c31fdd408411ab95f4e326b.tar.gz
kernel-qcow2-linux-642c92da36ae0bed3c31fdd408411ab95f4e326b.tar.xz
kernel-qcow2-linux-642c92da36ae0bed3c31fdd408411ab95f4e326b.zip
PCI: Don't pass pci_dev to pci_ext_cfg_avail()
pci_ext_cfg_avail() doesn't use the "struct pci_dev *" passed to it, and there's no requirement that a host bridge even be represented by a pci_dev. This drops the pci_ext_cfg_avail() parameter. [bhelgaas: changelog] Signed-off-by: Taku Izumi <izumi.taku@jp.fujitsu.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'arch/x86/pci')
-rw-r--r--arch/x86/pci/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/pci/common.c b/arch/x86/pci/common.c
index 720e973fc34a..52dbf1aeeb63 100644
--- a/arch/x86/pci/common.c
+++ b/arch/x86/pci/common.c
@@ -626,7 +626,7 @@ void pcibios_disable_device (struct pci_dev *dev)
pcibios_disable_irq(dev);
}
-int pci_ext_cfg_avail(struct pci_dev *dev)
+int pci_ext_cfg_avail(void)
{
if (raw_pci_ext_ops)
return 1;