From patchwork Tue Nov 7 00:36:03 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 13447626 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 8009BC4167B for ; Tue, 7 Nov 2023 00:36:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=VEFSt7NUD3qz8oaSK5TlYzmAXzVlVqVtx20s1d6qcm4=; b=qIdhMGzaLj3RZi SLPODBJ7ksLqmj6PDsmV45dSvNn5a1eF2lVRe3Ff69ITo75FT4Wy+KeVBTHdnRg0cydAtrK7lS364 rLqB4COxJQHo3ZbBLBnWix16vueWZKcR7EgPe8Ddm5+SQBWr8dO0BKa7O/JbhZn0SrKeu9LFPTW8X sEqHZQ0oLWQNlXT192LMFY4K/AX/PdZdIiEKAEdmHOUHitnuZYdT4vQ3qsv10qL5I06Vntdan7uuE CYOGkefPl1Nj8TxakLSd89dCXW/WilVuwIEA9S0KHytZ8RP7V6G3rUKR7f0wEDjD16D/eG7r3CJIZ Tq84soMWv0QdqzeTGvHA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1r0A4d-000E48-10; Tue, 07 Nov 2023 00:36:07 +0000 Received: from [50.53.46.231] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.96 #2 (Red Hat Linux)) id 1r0A4a-000E3w-1w; Tue, 07 Nov 2023 00:36:04 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , kernel test robot , Bartosz Golaszewski , Arnd Bergmann , linux-arm-kernel@lists.infradead.org, patches@armlinux.org.uk, Russell King Subject: [PATCH] ARM: davinci: also select PINCTRL Date: Mon, 6 Nov 2023 16:36:03 -0800 Message-ID: <20231107003603.20973-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.42.1 MIME-Version: 1.0 X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org kconfig warns when PINCTRL_SINGLE is selected but PINCTRL is not set, so also set PINCTRL for ARCH_DAVINCI. This prevents a kconfig/build warning: WARNING: unmet direct dependencies detected for PINCTRL_SINGLE Depends on [n]: PINCTRL [=n] && OF [=y] && HAS_IOMEM [=y] Selected by [y]: - ARCH_DAVINCI [=y] && ARCH_MULTI_V5 [=y] Fixes: f962396ce292 ("ARM: davinci: support multiplatform build for ARM v5") Signed-off-by: Randy Dunlap Reported-by: kernel test robot Closes: lore.kernel.org/r/202311070548.0f6XfBrh-lkp@intel.com Cc: Bartosz Golaszewski Cc: Arnd Bergmann Cc: linux-arm-kernel@lists.infradead.org Cc: patches@armlinux.org.uk Cc: Russell King Acked-by: Bartosz Golaszewski --- KernelVersion: 6.6 arch/arm/mach-davinci/Kconfig | 1 + 1 file changed, 1 insertion(+) diff -- a/arch/arm/mach-davinci/Kconfig b/arch/arm/mach-davinci/Kconfig --- a/arch/arm/mach-davinci/Kconfig +++ b/arch/arm/mach-davinci/Kconfig @@ -10,6 +10,7 @@ menuconfig ARCH_DAVINCI select PM_GENERIC_DOMAINS_OF if PM && OF select REGMAP_MMIO select RESET_CONTROLLER + select PINCTRL select PINCTRL_SINGLE if ARCH_DAVINCI