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 64F91657B3; Tue, 23 Jan 2024 01:03:21 +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=1705971801; cv=none; b=JgntpMiS0aJPQ0gpHVGo4ou9KxqjEOKCPqvrxk4hlAYLtLP8WNaSJrRAiCcAeKO92JilxcpWhvcCX3mwBj/1ABgb7WhUzxlmdMR3AhoT8a7xRDzzasria2YWMv5G7Tepi77noPz6veIvd+f1YLgELQQ0wfFf7XVWZo9gxMg0jkY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705971801; c=relaxed/simple; bh=GqTqKEfkirhImzZTZ+culhOdfdUfOfwcTlNQoVPdU3A=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ErgiziGS2nzw4eyr1njNHGxGhOmFQ6wkTxlX1DqS+1dBqIjqzTUwU3fN+a32FV54EECp83KQcmsA/DMymtpvCDMgB9TbbhSlVVswBA6lEs1MXyBknQkiH9TkjMaZ/Q/eGZgFVz9x2P1zwC6pqeYJHrFaRT1FobMVBSiPvI382hE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=kicYbP11; 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="kicYbP11" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9DA0AC433C7; Tue, 23 Jan 2024 01:03:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1705971801; bh=GqTqKEfkirhImzZTZ+culhOdfdUfOfwcTlNQoVPdU3A=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=kicYbP11OazhfpTK0lYT6IPcn6e9h5ppfTbCD8olP+HiDHwbLSyo2FLlFZrmHYOv9 4FoygBFFqejVHrdu/C/F1LrB0IS68Tw/F2zm7bcZqxzY5brVBJ9Pl/6J7sNLKhoN6z ErOSCHVxNJVBZJfAYJtPuw2gr+TLoq82H+oX4XjU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Randy Dunlap , kernel test robot , Bartosz Golaszewski , Arnd Bergmann , linux-arm-kernel@lists.infradead.org, patches@armlinux.org.uk, "Russell King (Oracle)" , Sasha Levin Subject: [PATCH 6.1 323/417] ARM: 9330/1: davinci: also select PINCTRL Date: Mon, 22 Jan 2024 15:58:11 -0800 Message-ID: <20240122235802.990549429@linuxfoundation.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240122235751.480367507@linuxfoundation.org> References: <20240122235751.480367507@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Randy Dunlap [ Upstream commit f54e8634d1366926c807e2af6125b33cff555fa7 ] 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] Closes: lore.kernel.org/r/202311070548.0f6XfBrh-lkp@intel.com Fixes: f962396ce292 ("ARM: davinci: support multiplatform build for ARM v5") Signed-off-by: Randy Dunlap Reported-by: kernel test robot Cc: Bartosz Golaszewski Cc: Arnd Bergmann Cc: linux-arm-kernel@lists.infradead.org Cc: patches@armlinux.org.uk Signed-off-by: Russell King (Oracle) Signed-off-by: Sasha Levin --- arch/arm/mach-davinci/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-davinci/Kconfig b/arch/arm/mach-davinci/Kconfig index 0b54ca56555b..672ffb0b5f3a 100644 --- a/arch/arm/mach-davinci/Kconfig +++ b/arch/arm/mach-davinci/Kconfig @@ -11,6 +11,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 -- 2.43.0