From 708d8e42c35b8a3b36097f08c9acf7c4e0621f97 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Tue, 6 Jan 2026 16:24:03 -0500 Subject: [PATCH] ps2: Disable v2. It isn't working properly; see #19874. Leave the others enable for testing for now. We can disable them in the beta6 branch if necessary (if nobody reports that they are indeed working.) --- src/add-ons/kernel/bus_managers/ps2/ps2_elantech.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/add-ons/kernel/bus_managers/ps2/ps2_elantech.cpp b/src/add-ons/kernel/bus_managers/ps2/ps2_elantech.cpp index af84416ff2..c5bf8e7a7e 100644 --- a/src/add-ons/kernel/bus_managers/ps2/ps2_elantech.cpp +++ b/src/add-ons/kernel/bus_managers/ps2/ps2_elantech.cpp @@ -977,8 +977,10 @@ probe_elantech(ps2_dev* dev) } // TODO: Update supported after testing all versions. - // Only hardware version 4 devices are supported as of now, the other are untested. - bool supported = v4 || !v3 || !v2 || !v1; + // Only hardware version 4 devices are known to be supported as of now. + // v2 is known to be broken, see #19874. + (void)v2; + bool supported = v4 || v3 || v1; if (supported && v3) { uint8 samples[3];