iommu/arm-smmu-v3: Fix build error without CONFIG_PCI_ATS
authorYueHaibing <yuehaibing@huawei.com>
Tue, 3 Sep 2019 06:50:56 +0000 (14:50 +0800)
committerJoerg Roedel <jroedel@suse.de>
Tue, 3 Sep 2019 12:58:20 +0000 (14:58 +0200)
commit097a7df2e3af1b716cd39ce90001a2c372488e58
treeb0dc862404b5e56a5791705ab2bd5597a81fd5d6
parentdbe8e6a81a2a45dfa210c2c271472db80efaa03f
iommu/arm-smmu-v3: Fix build error without CONFIG_PCI_ATS

If CONFIG_PCI_ATS is not set, building fails:

drivers/iommu/arm-smmu-v3.c: In function arm_smmu_ats_supported:
drivers/iommu/arm-smmu-v3.c:2325:35: error: struct pci_dev has no member named ats_cap; did you mean msi_cap?
  return !pdev->untrusted && pdev->ats_cap;
                                   ^~~~~~~

ats_cap should only used when CONFIG_PCI_ATS is defined,
so use #ifdef block to guard this.

Fixes: bfff88ec1afe ("iommu/arm-smmu-v3: Rework enabling/disabling of ATS for PCI masters")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/arm-smmu-v3.c