From 29eff3e84c2b92d0143ac114f89f041a3f0b6f87 Mon Sep 17 00:00:00 2001 From: LeoLiu-oc Date: Thu, 5 Jun 2025 18:23:32 +0800 Subject: [PATCH] anolis: PCI: Supplement ACS quirk for more Zhaoxin Root Ports ANBZ: #21674 To adapt to more new Zhaoxin platforms, further supplement more Root Port Device IDs to the pci_quirk_zhaoxin_pcie_ports_acs() function. Signed-off-by: LeoLiu-oc --- drivers/pci/quirks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index 1e1f0b5fb5b6..67d005ee8930 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c @@ -4794,7 +4794,7 @@ static int pci_quirk_zhaoxin_pcie_ports_acs(struct pci_dev *dev, u16 acs_flags) switch (dev->device) { case 0x0710 ... 0x071e: case 0x0721: - case 0x0723 ... 0x0752: + case 0x0723 ... 0x075e: return pci_acs_ctrl_enabled(acs_flags, PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF); } -- Gitee