diff options
author | Yijing Wang <wangyijing@huawei.com> | 2013-12-05 19:56:39 +0800 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2013-12-09 16:50:22 -0700 |
commit | c7797d67ceaf33f5f28017d588a15d2c64ab309e (patch) | |
tree | 80186549d2a35106e3d7756cf67ecb05accb0a3d /arch/ia64/hp | |
parent | 894d33437872d974c636da55563a8474fa6713c5 (diff) | |
download | linux-c7797d67ceaf33f5f28017d588a15d2c64ab309e.tar.gz linux-c7797d67ceaf33f5f28017d588a15d2c64ab309e.tar.bz2 linux-c7797d67ceaf33f5f28017d588a15d2c64ab309e.zip |
ia64/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/ia64/hp')
-rw-r--r-- | arch/ia64/hp/common/sba_iommu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/hp/common/sba_iommu.c b/arch/ia64/hp/common/sba_iommu.c index 4c530a82fc46..8e858b593e4f 100644 --- a/arch/ia64/hp/common/sba_iommu.c +++ b/arch/ia64/hp/common/sba_iommu.c @@ -255,7 +255,7 @@ static u64 prefetch_spill_page; #endif #ifdef CONFIG_PCI -# define GET_IOC(dev) (((dev)->bus == &pci_bus_type) \ +# define GET_IOC(dev) ((dev_is_pci(dev)) \ ? ((struct ioc *) PCI_CONTROLLER(to_pci_dev(dev))->iommu) : NULL) #else # define GET_IOC(dev) NULL |