From 8e81c5c50c7aed730c55a65b34ea4527b86901bd Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Wed, 30 Oct 2024 23:37:37 +0700 Subject: [PATCH] Use GenericUSBXHCI only with AMD Ryzen laptops --- Scripts/kext_maestro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/kext_maestro.py b/Scripts/kext_maestro.py index 2d4efc2..f05191c 100644 --- a/Scripts/kext_maestro.py +++ b/Scripts/kext_maestro.py @@ -239,7 +239,7 @@ class KextMaestro: device_id = controller_props.get("Device ID") if device_id in pci_data.UnsupportedUSBControllerIDs: idx = pci_data.UnsupportedUSBControllerIDs.index(device_id) - if idx == 0: + if idx == 0 and "Laptop" in hardware_report.get("Motherboard").get("Platform"): selected_kexts.append("GenericUSBXHCI") else: selected_kexts.append("XHCI-unsupported")