acidanthera / bugtracker

Acidanthera Bugtracker
374 stars 42 forks source link

VoodooPS2Trackpad: Disable Trackpad Probe #2356

Open xuanhung1509 opened 6 months ago

xuanhung1509 commented 6 months ago

There's a SSDT-DisableTrackpadProbe regarding disable unsupported trackpad devices.

My laptop has ALPS trackpad and trackpoint. Is it a good idea to disable all other devices? (I only keep ALPS Glidepoint, though I find the trackpoint still works even when disabling it)

DefinitionBlock ("", "SSDT", 2, "ACDT", "Ps2", 0x00000000)
{
    External (_SB_.PCI0.LPCB.PS2K, DeviceObj)

    Name (_SB.PCI0.LPCB.PS2K.RMCF, Package (0x06)
    {
        "Elantech TouchPad", 
        Package (0x02)
        {
            "DisableDevice", 
            ">y"
        }, 

        "Sentelic FSP", 
        Package (0x02)
        {
            "DisableDevice", 
            ">y"
        }, 

        "Synaptics TouchPad", 
        Package (0x02)
        {
            "DisableDevice", 
            ">y"
        }
    })
}