From mboxrd@z Thu Jan 1 00:00:00 1970 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 4A744C433FE for ; Tue, 8 Nov 2022 23:22:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229899AbiKHXWv (ORCPT ); Tue, 8 Nov 2022 18:22:51 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60520 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230034AbiKHXWo (ORCPT ); Tue, 8 Nov 2022 18:22:44 -0500 Received: from madras.collabora.co.uk (madras.collabora.co.uk [46.235.227.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7760124BD7 for ; Tue, 8 Nov 2022 15:22:43 -0800 (PST) Received: from notapiano.myfiosgateway.com (zone.collabora.co.uk [167.235.23.81]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: nfraprado) by madras.collabora.co.uk (Postfix) with ESMTPSA id 14CB166029B1; Tue, 8 Nov 2022 23:22:39 +0000 (GMT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1667949762; bh=PcHe9cy6qruJU4c+HcbUI24S03MQpaBXwwsagHEloxQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Xtxp8S3gcqWlp3a4YiRzZiTSHHfgW8u9NC6HY5LythSfX5SRuzZ0dT0blSyGJgHRU DBQ/8/jnH/SUkIJ5baQnqaBVTOMfW+16B+ZGQDw7Tk9Sb9UwHvLo4d1ekzhoDF9RQk /MuKFwvxpbdF7P8EPFfKUKHBzEBgLgDvoBnkf52//qhl8vs+FfSkXxD7bLSyLlYy8Y PsdIrSRtci4npnzkqpFoec74VgJzp6iFTwWAoOVwzYayjUtQ7k0FsaINqj5vu067fw F+mt+u0wVh6bhC+L1CWOTPOzzAI3tYWMk2yvGI86TLCR4ePfzu4dtRzyLdV+fTuj7z pseDBHke56P8w== From: =?UTF-8?q?N=C3=ADcolas=20F=2E=20R=2E=20A=2E=20Prado?= To: Matthias Brugger Cc: kernel@collabora.com, AngeloGioacchino Del Regno , =?UTF-8?q?N=C3=ADcolas=20F=2E=20R=2E=20A=2E=20Prado?= , Arnd Bergmann , Bjorn Andersson , Catalin Marinas , Dmitry Baryshkov , Krzysztof Kozlowski , Marcel Ziswiler , Mark Brown , Shawn Guo , Vinod Koul , Will Deacon , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH 03/13] arm64: defconfig: Enable TOUCHSCREEN_ELAN Date: Tue, 8 Nov 2022 18:22:18 -0500 Message-Id: <20221108232228.1177199-4-nfraprado@collabora.com> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221108232228.1177199-1-nfraprado@collabora.com> References: <20221108232228.1177199-1-nfraprado@collabora.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Enable support for Elan eKTH I2C touchscreens. They are used by several of the arm64 devicetrees. By enabling this on the defconfig we make it effortless to test the relevant hardware on CI systems like KernelCI. Signed-off-by: NĂ­colas F. R. A. Prado --- arch/arm64/configs/defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index af072b47f762..c6bd2f7cd1b8 100644 --- a/arch/arm64/configs/defconfig +++ b/arch/arm64/configs/defconfig @@ -413,6 +413,7 @@ CONFIG_KEYBOARD_CROS_EC=y CONFIG_INPUT_TOUCHSCREEN=y CONFIG_TOUCHSCREEN_ATMEL_MXT=m CONFIG_TOUCHSCREEN_GOODIX=m +CONFIG_TOUCHSCREEN_ELAN=m CONFIG_TOUCHSCREEN_EDT_FT5X06=m CONFIG_INPUT_MISC=y CONFIG_INPUT_PM8941_PWRKEY=y -- 2.38.1