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 0A6A028D8E8; Thu, 27 Nov 2025 14:59:24 +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=1764255564; cv=none; b=TNcMr2fqDT4xbKYzs+XnvH3Yi4ePxbxifd8MKRa1TGV+51yH0kBmV9TZGaM3e6ogiTAU5WctwUv/ABv/U/h1mC1WiGJIyElkyB6YDY0/cdV8fy6zUTIlBYMrKAs46CuoYaQI2dugUAcs8Z2piRdAZaQIJKJ0bCWFRsxYkDHl1x0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764255564; c=relaxed/simple; bh=MCeXiwiuUxobnp32jtEFsi0qaTBF3ky/xmvUygULTYM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Nh2o4fJhkImuXO2IlCrvYFCaoVyIwLyqX28AkKiuHQrmlIL11VVUKQRaqgS1OfFY4lFLbYEDcnuo+dgMwYf6s9vDom7hrtCZa6M/yUBTv4/FKokgt+JTZLAGxVR46Fzdd3jEG5xdLOXFpqLGy/B/CQU/m8+rog0bPfABcyEjWAc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=InDXWF7Q; 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="InDXWF7Q" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 83148C4CEF8; Thu, 27 Nov 2025 14:59:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1764255563; bh=MCeXiwiuUxobnp32jtEFsi0qaTBF3ky/xmvUygULTYM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=InDXWF7Q1afJlkCb85KXWBGZTwmJKaY0vF6MAXTaOHoHRyUjcxV03vI6Y8BHS03kd KZZfxnxnTbNDYru5qD3rMX+9gp7s42WMgyggYer/zGyzdL9HncIRHi+yoa3yavEBZj +Ca8g9QEQZSYom9rUoBPcDB1byRs22D6wJ0NWnTY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Weikang Guo , Hans de Goede , Dmitry Torokhov Subject: [PATCH 6.17 037/175] Input: goodix - add support for ACPI ID GDIX1003 Date: Thu, 27 Nov 2025 15:44:50 +0100 Message-ID: <20251127144044.320021826@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20251127144042.945669935@linuxfoundation.org> References: <20251127144042.945669935@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.17-stable review patch. If anyone has any objections, please let me know. ------------------ From: Hans de Goede commit c6d99e488117201c63efd747ce17b80687c3f5a9 upstream. Some newer devices use an ACPI hardware ID of GDIX1003 for their Goodix touchscreen controller, instead of GDIX1001 / GDIX1002. Add GDIX1003 to the goodix_acpi_match[] table. Reported-by: Weikang Guo Closes: https://lore.kernel.org/linux-input/20250225024409.1467040-1-guoweikang.kernel@gmail.com/ Tested-by: Weikang Guo Signed-off-by: Hans de Goede Link: https://lore.kernel.org/r/20251013121022.44333-1-hansg@kernel.org Cc: stable@vger.kernel.org Signed-off-by: Dmitry Torokhov Signed-off-by: Greg Kroah-Hartman --- drivers/input/touchscreen/goodix.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/input/touchscreen/goodix.c +++ b/drivers/input/touchscreen/goodix.c @@ -1557,6 +1557,7 @@ MODULE_DEVICE_TABLE(i2c, goodix_ts_id); static const struct acpi_device_id goodix_acpi_match[] = { { "GDIX1001", 0 }, { "GDIX1002", 0 }, + { "GDIX1003", 0 }, { "GDX9110", 0 }, { } };