Blacklist hid_sensor_hub to fix touchpad

The ITE8353 touchpad is still being bound to hid-sensor-hub instead
of hid-multitouch. Blacklisting hid_sensor_hub should force it to
use the proper touchpad driver.
This commit is contained in:
Geir Okkenhaug Jerstad 2025-06-30 18:59:15 +02:00
parent a0a12e14c8
commit 24b01ae4f0

View file

@ -37,9 +37,10 @@
"i2c_hid_acpi" "i2c_hid_acpi"
]; ];
# Blacklist AMD SFH which interferes with touchpad # Blacklist modules that interfere with touchpad
blacklistedKernelModules = [ blacklistedKernelModules = [
"amd_sfh" # AMD Sensor Fusion Hub - causes touchpad to be misidentified "amd_sfh" # AMD Sensor Fusion Hub - causes touchpad to be misidentified
"hid_sensor_hub" # Prevents touchpad from being properly recognized
]; ];
extraModulePackages = []; extraModulePackages = [];