mirror of https://gitee.com/openkylin/linux.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: 21b5b8eebb
("PCI: quirk fixup for cavium invalid sriov...")
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
da28caaaf8
commit
0bec90571c
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue