On Mon, 2022-03-28 at 11:35 -0700, Davidlohr Bueso wrote: > On Fri, 25 Mar 2022, Vishal Verma wrote: > > > +static bool is_pcie(struct acpi_pci_root *root) > > +{ > > + if (root->bridge_type == ACPI_BRIDGE_TYPE_PCIE) > > + return true; > > + return false; > > +} > > > > -static acpi_status acpi_pci_run_osc(acpi_handle handle, > > +static bool is_cxl(struct acpi_pci_root *root) > > +{ > > + if (root->bridge_type == ACPI_BRIDGE_TYPE_CXL) > > + return true; > > + return false; > > +} > > return root->bridge_type == TYPE Oh, yes, of course - I'll fix up!