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 285822054F8; Thu, 12 Dec 2024 15:23:27 +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=1734017007; cv=none; b=uhn7ygF5UVR0NO5xMQYq/et8xTw6bpVKiQkdXhVN5EzJxoH369s6FXBCbjUkGpzdXaj3/c++ARSnkmDLjBBAgIsNSYiUWba1zxYlvC/Z/zAsCOztdfKSxhW8RmQkh9jxEXamltAtVucN7v1n+UP9fzV+vncbOMXmlAHIfqlABC8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734017007; c=relaxed/simple; bh=5JwtVALgFHovo6fRMNPeZN+MNHcr5LPE+XCsTk0/eoA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=QRmr3pANEF4LNozUkgf5Kxg7udlOuEJpyxviV1aS0FukVy1GWt6i0Y2w7aQgTPGf8eXOQ9+2OigghYt4I5YKfC++kpx6MINnmxA9sBusqzXX777yv+rRIInBY1IPJeTF10/4V3SdV/yXKwwBGYcXzNVY01Cxxb+x/R3vLkLmRig= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=2t0qL7Ov; 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="2t0qL7Ov" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8D67FC4CECE; Thu, 12 Dec 2024 15:23:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1734017007; bh=5JwtVALgFHovo6fRMNPeZN+MNHcr5LPE+XCsTk0/eoA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=2t0qL7OvZ8/xWBQgJmyFO7hiFf34qPgq5j8ufDu+L8aty8cLznMgLxpqvdf5Z2aIT cwts8Rts3dRSqBNVd964UkGNUB0+X2Ym/TmnsXxkKIWjWTph+afL6IQkphiY/ePeq0 0Xl0FOMMdn4vM0z2J/zz5KeJ1x6JGdi8UgYTCZhQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, kernel test robot , Esben Haabendal , Linus Walleij , Sasha Levin Subject: [PATCH 6.12 354/466] pinctrl: freescale: fix COMPILE_TEST error with PINCTRL_IMX_SCU Date: Thu, 12 Dec 2024 15:58:43 +0100 Message-ID: <20241212144320.773155779@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241212144306.641051666@linuxfoundation.org> References: <20241212144306.641051666@linuxfoundation.org> User-Agent: quilt/0.67 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.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Esben Haabendal [ Upstream commit 58414a31c5713afb5449fd74a26a843d34cc62e8 ] When PINCTRL_IMX_SCU was selected by PINCTRL_IMX8DXL or PINCTRL_IMX8QM combined with COMPILE_TEST on a non-arm platforms, the IMX_SCU dependency could not be enabled. Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202410031439.GyTSa0kX-lkp@intel.com/ Closes: https://lore.kernel.org/oe-kbuild-all/202410030852.q0Hukplf-lkp@intel.com/ Signed-off-by: Esben Haabendal Link: https://lore.kernel.org/20241003-imx-pinctrl-compile-test-fix-v1-1-145ca1948cc3@geanix.com Signed-off-by: Linus Walleij Signed-off-by: Sasha Levin --- drivers/pinctrl/freescale/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pinctrl/freescale/Kconfig b/drivers/pinctrl/freescale/Kconfig index 3b59d71890045..139bc0fb8a9db 100644 --- a/drivers/pinctrl/freescale/Kconfig +++ b/drivers/pinctrl/freescale/Kconfig @@ -20,7 +20,7 @@ config PINCTRL_IMX_SCMI config PINCTRL_IMX_SCU tristate - depends on IMX_SCU + depends on IMX_SCU || COMPILE_TEST select PINCTRL_IMX config PINCTRL_IMX1_CORE -- 2.43.0