diff options
author | Yijing Wang <wangyijing@huawei.com> | 2013-12-05 12:54:34 +0100 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2013-12-10 00:50:12 +0100 |
commit | 894d33437872d974c636da55563a8474fa6713c5 (patch) | |
tree | 5cda98afdfbb81b18314b4d2134698d99c4adaa8 /arch/x86/kernel | |
parent | PCI: Use dev_is_pci() to identify PCI devices (diff) | |
download | linux-894d33437872d974c636da55563a8474fa6713c5.tar.xz linux-894d33437872d974c636da55563a8474fa6713c5.zip |
x86/PCI: Use dev_is_pci() to identify PCI devices
Use dev_is_pci() instead of checking bus type directly.
Signed-off-by: Yijing Wang <wangyijing@huawei.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r-- | arch/x86/kernel/acpi/boot.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index 6c0b43bd024b..d359d0fffa50 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c @@ -1034,9 +1034,7 @@ static int mp_config_acpi_gsi(struct device *dev, u32 gsi, int trigger, if (!acpi_ioapic) return 0; - if (!dev) - return 0; - if (dev->bus != &pci_bus_type) + if (!dev || !dev_is_pci(dev)) return 0; pdev = to_pci_dev(dev); |