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 8840A6F2FE; Thu, 12 Dec 2024 15:47:28 +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=1734018448; cv=none; b=e1fTXKHxOMSuupmjsAo5WTxbQvWCyrj0dwAB3M06oKawKJi94UnnTLDbmY8AJfliBi4K/I4Oc1dxOpk4BK7qHTzvYi6/3SsenSRNC1inHk6+OYUAXRuuNV2GtFs8Ue3Ur9W6rEnnugBcmRbHWc1aRptSTWn/th3UloVEBq9qs/Q= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734018448; c=relaxed/simple; bh=h60cScJ55Ja4VTWclSexthcOLMpFfXuY7Hc9N69JU14=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=KVB1pZ1H5Yup2krgEgrtUgVzG3aiX+ah+XMhSrTFHpmq3hEggDpgW32jccjnotWBbB7SatbLDgB0YMLiOT7de5isCZ4ylz+91MMiIuKbSap6Cl2Q2LEh05eP2UND6G+p1fQKqwkOxCxWgl+UJ/eDDgWIbDUUVFs/h23H964SO6I= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=WmkzTPYd; 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="WmkzTPYd" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 113AEC4CEDD; Thu, 12 Dec 2024 15:47:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1734018448; bh=h60cScJ55Ja4VTWclSexthcOLMpFfXuY7Hc9N69JU14=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=WmkzTPYdtuFb8GmAlFYTtnrMQlniro+p3JrZnUOvCzYNJN1kukCkW+KtBQpABPNbt yojJJMZMRIZSzpzBIhtmdqOUSnOLTt3hiIYvTtHTAb2Rq7MaQaWts8xAhZ6Kyiq/GV fZ2lj6947BC26KhcVByIcPeHnu3AVmR+5QHCbKrM= 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.6 265/356] pinctrl: freescale: fix COMPILE_TEST error with PINCTRL_IMX_SCU Date: Thu, 12 Dec 2024 15:59:44 +0100 Message-ID: <20241212144255.063763545@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241212144244.601729511@linuxfoundation.org> References: <20241212144244.601729511@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.6-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 27bdc548f3a7d..a36dae526de12 100644 --- a/drivers/pinctrl/freescale/Kconfig +++ b/drivers/pinctrl/freescale/Kconfig @@ -9,7 +9,7 @@ config PINCTRL_IMX 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