From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id CA1BD3783A1; Mon, 9 Feb 2026 14:37:09 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770647829; cv=none; b=FWaqg7xVaNovXHWTxlQOU2FNWACZGTzexs75PQcTgntLDTnJ/W66AySeuTbzqfRaHFErmmRfrQnxvYCv2UjLH3shNDp63j78BiL3TMYP0jcPUAWiFOzn+IB+KH1nldgQKhYQilfUgQSuZ80NeG236AEvsxIZgeujBguikc6OXPg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770647829; c=relaxed/simple; bh=B8BVd91MwyG99xS0EC2p7wLmuyZo84aC/97+fqyqznU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=XE1vLgitG7snhpB74nXuu8MHt2Px6RvUKYpb7lqEgWXxDtR0bnohSZIfe3oSfILZhTVRdamaDKUiK2zpN//LRjsREXsyuRKDm3+86YsVt+/stEle6swRy1dscuEYUdrMyo5X2zEuyOmZsK5QUeniJvCjEp8vksoPTC0gWJ4a/eg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=W76bqNYB; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="W76bqNYB" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 37E68C116C6; Mon, 9 Feb 2026 14:37:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1770647829; bh=B8BVd91MwyG99xS0EC2p7wLmuyZo84aC/97+fqyqznU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=W76bqNYB7m3nLowEU3xExNUtY/KTZMeQT8k1FXyGF0TviolDijtyxbXqIfsIutqOZ tmiQeAQn/VAik+7sU9d6hOhjKTq9bDDMIF5VvW+G7m1KHgE1APN3R7SEPIyhSw7xxB O7TAZJt8SpC4Z0tlrLScJRFQ+Lmj+MuXAHIGASs8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Benjamin Tissoires , DaytonCL , Benjamin Tissoires , Sasha Levin Subject: [PATCH 6.12 041/113] HID: multitouch: add MT_QUIRK_STICKY_FINGERS to MT_CLS_VTL Date: Mon, 9 Feb 2026 15:23:10 +0100 Message-ID: <20260209142311.682723490@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260209142310.204833231@linuxfoundation.org> References: <20260209142310.204833231@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: DaytonCL [ Upstream commit ff3f234ff1dcd6d626a989151db067a1b7f0f215 ] Some VTL-class touchpads (e.g. TOPS0102:00 35CC:0104) intermittently fail to release a finger contact. A previous slot remains logically active, accompanied by stale BTN_TOOL_DOUBLETAP state, causing gestures to stay latched and resulting in stuck two-finger scrolling and false right-clicks. Apply MT_QUIRK_STICKY_FINGERS to handle the unreleased contact correctly. Link: https://gitlab.freedesktop.org/libinput/libinput/-/issues/1225 Suggested-by: Benjamin Tissoires Tested-by: DaytonCL Signed-off-by: DaytonCL Signed-off-by: Benjamin Tissoires Signed-off-by: Sasha Levin --- drivers/hid/hid-multitouch.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/hid/hid-multitouch.c b/drivers/hid/hid-multitouch.c index 0e4cb0e668eb5..fcfc508d1b54d 100644 --- a/drivers/hid/hid-multitouch.c +++ b/drivers/hid/hid-multitouch.c @@ -379,6 +379,7 @@ static const struct mt_class mt_classes[] = { { .name = MT_CLS_VTL, .quirks = MT_QUIRK_ALWAYS_VALID | MT_QUIRK_CONTACT_CNT_ACCURATE | + MT_QUIRK_STICKY_FINGERS | MT_QUIRK_FORCE_GET_FEATURE, }, { .name = MT_CLS_GOOGLE, -- 2.51.0