From 85b49a50927842397094e8aa52aaf30f243220bb Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Sun, 13 Oct 2024 09:51:43 +0700 Subject: [PATCH] Update index to identify kext for touchpad device --- Scripts/kext_maestro.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Scripts/kext_maestro.py b/Scripts/kext_maestro.py index 434ec9d..a283a7e 100644 --- a/Scripts/kext_maestro.py +++ b/Scripts/kext_maestro.py @@ -207,14 +207,14 @@ class KextMaestro: selected_kexts.append("VoodooPS2Controller") if device_id.startswith("SYN"): selected_kexts.append("VoodooRMI") - elif idx and 76 < idx < 80: + elif idx and 75 < idx < 79: selected_kexts.append("VoodooSMBus") if "I2C" in device_props.get("Device Type", "None"): selected_kexts.append("VoodooI2CHID") if idx: - if idx < 77: + if idx < 76: selected_kexts.append("AlpsHID") - elif 79 < idx: + elif 78 < idx: selected_kexts.append("VoodooRMI") if any(patch.checked for patch in acpi_patches if patch.name == "BATP"):