From: Herbert Xu Date: Mon, 5 Sep 2016 09:12:57 +0000 (+0800) Subject: PCI: Fix cavium quirk compile failure with PCI_ATS off X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=0bec90571cb95afee80beb98c12cd82bd9136ac6;p=deliverable%2Flinux.git PCI: Fix cavium quirk compile failure with PCI_ATS off The newly added quirk_cavium_sriov_rnm_link doesn't compile if PCI_ATS is off. This patch adds a check for PCI_ATS. Fixes: 21b5b8eebbae ("PCI: quirk fixup for cavium invalid sriov...") Reported-by: kbuild test robot Signed-off-by: Herbert Xu --- diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index 5980aae41d40..7060823c637e 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c @@ -834,7 +834,7 @@ static void quirk_amd_ioapic(struct pci_dev *dev) DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_VIPER_7410, quirk_amd_ioapic); #endif /* CONFIG_X86_IO_APIC */ -#ifdef CONFIG_ARM64 +#if defined(CONFIG_ARM64) && defined(CONFIG_PCI_ATS) static void quirk_cavium_sriov_rnm_link(struct pci_dev *dev) {