diff mbox series

[v2] ARM: imx: Wrap i.MX config options in MACH_IMX

Message ID 20240901003813.674730-1-marek.vasut+renesas@mailbox.org
State Accepted
Delegated to: Fabio Estevam
Headers show
Series [v2] ARM: imx: Wrap i.MX config options in MACH_IMX | expand

Commit Message

Marek Vasut Sept. 1, 2024, 12:38 a.m. UTC
Wrap all the i.MX specific options in MACH_IMX, otherwise they keep
showing up in other SoC vendor configurations. No functional change.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
---
Cc: "NXP i.MX U-Boot Team" <uboot-imx@nxp.com>
Cc: Fabio Estevam <festevam@gmail.com>
Cc: Oleksandr Suvorov <oleksandr.suvorov@foundries.io>
Cc: Sean Anderson <seanga2@gmail.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Tom Rini <trini@konsulko.com>
Cc: u-boot@lists.denx.de
---
V2: s@HAVE_IMX@MACH_IMX@g
---
 arch/arm/mach-imx/Kconfig | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Tom Rini Sept. 2, 2024, 3:39 p.m. UTC | #1
On Sun, Sep 01, 2024 at 02:38:00AM +0200, Marek Vasut wrote:

> Wrap all the i.MX specific options in MACH_IMX, otherwise they keep
> showing up in other SoC vendor configurations. No functional change.
> 
> Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>

Reviewed-by: Tom Rini <trini@konsulko.com>
Fabio Estevam Sept. 2, 2024, 5:44 p.m. UTC | #2
On Sat, Aug 31, 2024 at 9:38 PM Marek Vasut
<marek.vasut+renesas@mailbox.org> wrote:
>
> Wrap all the i.MX specific options in MACH_IMX, otherwise they keep
> showing up in other SoC vendor configurations. No functional change.
>
> Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>

Applied, thanks.
diff mbox series

Patch

diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm/mach-imx/Kconfig
index c34bc25c0bf..134e42028c3 100644
--- a/arch/arm/mach-imx/Kconfig
+++ b/arch/arm/mach-imx/Kconfig
@@ -1,6 +1,8 @@ 
 config MACH_IMX
 	bool
 
+if MACH_IMX
+
 config HAS_CAAM
 	bool
 
@@ -200,3 +202,5 @@  config IOMUX_LPSR
 
 config IOMUX_SHARE_CONF_REG
 	bool
+
+endif