diff mbox series

[v4,2/2] imx: spl: fix a comment adding IMX9

Message ID 20220805181945.445683-3-oleksandr.suvorov@foundries.io
State Awaiting Upstream
Delegated to: Stefano Babic
Headers show
Series Support SPL for i.MX7ULP | expand

Commit Message

Oleksandr Suvorov Aug. 5, 2022, 6:19 p.m. UTC
There is a paired to ifdef comment which should include CONFIG_IMX9
as well.

Fixes: 881df6ed84c ("imx: add basic i.MX9 support")
Signed-off-by: Oleksandr Suvorov <oleksandr.suvorov@foundries.io>
---

Changes in v4:
- add a small fix for imx spl.

 arch/arm/mach-imx/spl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Stefano Babic Oct. 21, 2022, 11:41 a.m. UTC | #1
> There is a paired to ifdef comment which should include CONFIG_IMX9
> as well.
> Fixes: 881df6ed84c ("imx: add basic i.MX9 support")
> Signed-off-by: Oleksandr Suvorov <oleksandr.suvorov@foundries.io>
Applied to u-boot-imx, master, thanks !

Best regards,
Stefano Babic
diff mbox series

Patch

diff --git a/arch/arm/mach-imx/spl.c b/arch/arm/mach-imx/spl.c
index bca0b1123a7..46fb1b388cc 100644
--- a/arch/arm/mach-imx/spl.c
+++ b/arch/arm/mach-imx/spl.c
@@ -180,7 +180,7 @@  u32 spl_boot_device(void)
 
 	return spl_board_boot_device(boot_device_spl);
 }
-#endif /* CONFIG_MX7 || CONFIG_MX7ULP || CONFIG_IMX8M || CONFIG_IMX8 */
+#endif /* CONFIG_MX7 || CONFIG_MX7ULP || CONFIG_IMX8M || CONFIG_IMX8 || CONFIG_IMX9 */
 
 #ifdef CONFIG_SPL_USB_GADGET
 int g_dnl_bind_fixup(struct usb_device_descriptor *dev, const char *name)