diff options
author | Yijing Wang <wangyijing@huawei.com> | 2013-12-05 19:52:53 +0800 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2013-12-09 16:42:53 -0700 |
commit | 40c368c1ef6379db08d2ebd36f5a45efb93cff73 (patch) | |
tree | 9d4cba0dbdca2664b70252cb5b785ad7d7ee96b1 /drivers/pci/pci-acpi.c | |
parent | 6ce4eac1f600b34f2f7f58f9cd8f0503d79e42ae (diff) |
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 'drivers/pci/pci-acpi.c')
-rw-r--r-- | drivers/pci/pci-acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/pci-acpi.c b/drivers/pci/pci-acpi.c index 577074efbe62..e0431f1af33b 100644 --- a/drivers/pci/pci-acpi.c +++ b/drivers/pci/pci-acpi.c @@ -358,7 +358,7 @@ static void pci_acpi_cleanup(struct device *dev) static bool pci_acpi_bus_match(struct device *dev) { - return dev->bus == &pci_bus_type; + return dev_is_pci(dev); } static struct acpi_bus_type acpi_pci_bus = { |