From nobody Thu Dec 18 00:09:51 2025 Received: from albert.telenet-ops.be (albert.telenet-ops.be [195.130.137.90]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C4C821F542F for ; Tue, 17 Dec 2024 14:37:51 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.137.90 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734446275; cv=none; b=p2GABFRMDLvwFq7kikJUngV3AQ4CM/cyG172L5p8W6jjWsjDmxjA8cdRoGMhD8KEma7CiNeLRRqcOTTk1nywgLsDyu4Hp+3FKa8DpURkOWGtqoBTZiHmLTzIZiMfFO+PGPrBHJn2zMgdhavEEssfAhX0BTFMlcF2LcM4LUwVJbs= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734446275; c=relaxed/simple; bh=uqsbZet3jjyzWXtNmIO9OuuOe2QEQ4lIaSY05B1rLLI=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=L4WpjdKyirkolXh+VHuHDCe6Sm8k+eky0tV4H4r28k8x0dAEiYxD0inZMUFWU5bZye5a/naTO2QVnrzEOSFiP1CzCshOQL/gIHz0qYAzHDYtXxwGSXulOpTbvsuUu17toR/VK1jqFtUPnW66Jno0raOBr2YXbC2SEKzO4NS2eC4= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be; spf=none smtp.mailfrom=linux-m68k.org; arc=none smtp.client-ip=195.130.137.90 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=linux-m68k.org Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed80:43e0:bbcf:34a4:f7a0]) by albert.telenet-ops.be with cmsmtp id pqdh2D00R53u7h606qdhJB; Tue, 17 Dec 2024 15:37:44 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1tNYhd-001XtD-VX; Tue, 17 Dec 2024 15:37:41 +0100 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1tNYhh-00CHWN-Ao; Tue, 17 Dec 2024 15:37:41 +0100 From: Geert Uytterhoeven To: Arnd Bergmann , Mark Brown , Sudeep Holla , Shengjiu Wang , Shawn Guo , Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam Cc: imx@lists.linux.dev, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH] firmware: imx: IMX_SCMI_MISC_DRV should depend on ARCH_MXC Date: Tue, 17 Dec 2024 15:37:40 +0100 Message-Id: <28f88e536cab0abd5712787350b012bb0f1eacb5.1734445715.git.geert+renesas@glider.be> X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" The i.MX System Controller Management Interface firmware is only present on Freescale i.MX SoCs. Hence add a dependency on ARCH_MXC, to prevent asking the user about this driver when configuring a kernel without Freescale i.MX platform support. Fixes: 514b2262ade48a05 ("firmware: arm_scmi: Fix i.MX build dependency") Signed-off-by: Geert Uytterhoeven --- drivers/firmware/imx/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/firmware/imx/Kconfig b/drivers/firmware/imx/Kconfig index 907cd149c40a8b5f..c964f4924359fcd3 100644 --- a/drivers/firmware/imx/Kconfig +++ b/drivers/firmware/imx/Kconfig @@ -25,6 +25,7 @@ config IMX_SCU =20 config IMX_SCMI_MISC_DRV tristate "IMX SCMI MISC Protocol driver" + depends on ARCH_MXC || COMPILE_TEST default y if ARCH_MXC help The System Controller Management Interface firmware (SCMI FW) is --=20 2.34.1