Skip to content

Commit 55b8ff0

Browse files
skoralahdjbw
authored andcommitted
cxl/pci: Replace host_bridge->native_aer with pcie_aer_is_native()
Use pcie_aer_is_native() to determine the native AER ownership as the usage of host_bride->native_aer does not cover command line override of AER ownership. Signed-off-by: Smita Koralahalli <Smita.KoralahalliChannabasappa@amd.com> Reviewed-by: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com> Reviewed-by: Robert Richter <rrichter@amd.com> Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Reviewed-by: Dave Jiang <dave.jiang@intel.com> Link: https://lore.kernel.org/r/20230823234305.27333-4-Smita.KoralahalliChannabasappa@amd.com Signed-off-by: Dan Williams <dan.j.williams@intel.com>
1 parent 49f7767 commit 55b8ff0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/cxl/pci.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,6 @@ static int cxl_pci_setup_regs(struct pci_dev *pdev, enum cxl_regloc_type type,
529529

530530
static int cxl_pci_ras_unmask(struct pci_dev *pdev)
531531
{
532-
struct pci_host_bridge *host_bridge = pci_find_host_bridge(pdev->bus);
533532
struct cxl_dev_state *cxlds = pci_get_drvdata(pdev);
534533
void __iomem *addr;
535534
u32 orig_val, val, mask;
@@ -542,7 +541,7 @@ static int cxl_pci_ras_unmask(struct pci_dev *pdev)
542541
}
543542

544543
/* BIOS has PCIe AER error control */
545-
if (!host_bridge->native_aer)
544+
if (!pcie_aer_is_native(pdev))
546545
return 0;
547546

548547
rc = pcie_capability_read_word(pdev, PCI_EXP_DEVCTL, &cap);

0 commit comments

Comments
 (0)