On Wed, Mar 26, 2025 at 08:47:05PM -0500, Terry Bowman wrote: > diff --git a/drivers/pci/pcie/aer.c b/drivers/pci/pcie/aer.c > index 46123b70f496..d1df751cfe4b 100644 > --- a/drivers/pci/pcie/aer.c > +++ b/drivers/pci/pcie/aer.c > @@ -1123,8 +1169,11 @@ static void pci_aer_handle_error(struct pci_dev *dev, struct aer_err_info *info) > > static void handle_error_source(struct pci_dev *dev, struct aer_err_info *info) > { > - cxl_rch_handle_error(dev, info); > - pci_aer_handle_error(dev, info); This appears to remove that last reference to cxl_rch_handle_error, build throws a warning saying as such. I see in patch 5 it's removed, should probably be removed in this patch instead. ~Gregory