From nobody Tue Dec 16 08:32:59 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 590C0ECAAD8 for ; Fri, 16 Sep 2022 10:16:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231629AbiIPKQy (ORCPT ); Fri, 16 Sep 2022 06:16:54 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49466 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231491AbiIPKPt (ORCPT ); Fri, 16 Sep 2022 06:15:49 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9F426AD981; Fri, 16 Sep 2022 03:11:54 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 0025562A18; Fri, 16 Sep 2022 10:10:56 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0F64AC433D6; Fri, 16 Sep 2022 10:10:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1663323056; bh=qo7r3lFO+GmNp4rIp9+Gf79aAMEzn3aAsI/EYR7RM2A=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=RMvz/cisFhSWTSkIeHU4KQhu164sDxatHZTS2+sbB+VrwsLhuP83cEEX/fC0COBBH y6nlTcaP00N1uoSgYhv77p+BUNbBmHp551Z2VCh+mNboXX/p5vDehWqK24IZozwpRG ZLMwrLb7/x29KYs0VpDRd8fBMI0NGrgRNhDAoUaw= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Jarrah Gosbell , Dmitry Torokhov Subject: [PATCH 5.10 24/24] Input: goodix - add compatible string for GT1158 Date: Fri, 16 Sep 2022 12:08:49 +0200 Message-Id: <20220916100446.430445471@linuxfoundation.org> X-Mailer: git-send-email 2.37.3 In-Reply-To: <20220916100445.354452396@linuxfoundation.org> References: <20220916100445.354452396@linuxfoundation.org> User-Agent: quilt/0.67 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Jarrah Gosbell commit 80b9ebd3e478cd41526cbf84f80c3e0eb885d1d3 upstream. Add compatible string for GT1158 missing from the previous patch. Fixes: 425fe4709c76 ("Input: goodix - add support for GT1158") Signed-off-by: Jarrah Gosbell Link: https://lore.kernel.org/r/20220813043821.9981-1-kernel@undef.tools 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 @@ -1386,6 +1386,7 @@ MODULE_DEVICE_TABLE(acpi, goodix_acpi_ma #ifdef CONFIG_OF static const struct of_device_id goodix_of_match[] =3D { { .compatible =3D "goodix,gt1151" }, + { .compatible =3D "goodix,gt1158" }, { .compatible =3D "goodix,gt5663" }, { .compatible =3D "goodix,gt5688" }, { .compatible =3D "goodix,gt911" },