mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-10 07:50:04 +00:00
iommu/vt-d: Use dev_is_pci() to check whether it is pci device
Use PCI standard marco dev_is_pci() instead of directly compare pci_bus_type to check whether it is pci device. Signed-off-by: Yijing Wang <wangyijing@huawei.com> Signed-off-by: Joerg Roedel <joro@8bytes.org>
This commit is contained in:
parent
d2d1e8fe43
commit
dbad086433
@ -2758,7 +2758,7 @@ static int iommu_no_mapping(struct device *dev)
|
|||||||
struct pci_dev *pdev;
|
struct pci_dev *pdev;
|
||||||
int found;
|
int found;
|
||||||
|
|
||||||
if (unlikely(dev->bus != &pci_bus_type))
|
if (unlikely(!dev_is_pci(dev)))
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
pdev = to_pci_dev(dev);
|
pdev = to_pci_dev(dev);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user