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