aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sparc/kernel/iommu.c
diff options
context:
space:
mode:
authorYijing Wang <wangyijing@huawei.com>2013-12-11 14:00:26 +0800
committerBjorn Helgaas <bhelgaas@google.com>2013-12-11 16:52:04 -0700
commitdf907938cc46a7f5ab2df44e56cebc4f277b8356 (patch)
treede42db1096dd7d011f3fa16ba0ba3b613ab6a3ff /arch/sparc/kernel/iommu.c
parentia64/PCI: Use dev_is_pci() to identify PCI devices (diff)
downloadlinux-dev-df907938cc46a7f5ab2df44e56cebc4f277b8356.tar.xz
linux-dev-df907938cc46a7f5ab2df44e56cebc4f277b8356.zip
sparc/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/sparc/kernel/iommu.c')
-rw-r--r--arch/sparc/kernel/iommu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/kernel/iommu.c b/arch/sparc/kernel/iommu.c
index 070ed141aac7..76663b019eb5 100644
--- a/arch/sparc/kernel/iommu.c
+++ b/arch/sparc/kernel/iommu.c
@@ -854,7 +854,7 @@ int dma_supported(struct device *dev, u64 device_mask)
return 1;
#ifdef CONFIG_PCI
- if (dev->bus == &pci_bus_type)
+ if (dev_is_pci(dev))
return pci64_dma_supported(to_pci_dev(dev), device_mask);
#endif