diff mbox series

[v2,4/4] board: freescale: imxrt10..-evk: Fix missing include of serial.h

Message ID 20220317183321.315249-5-Mr.Bossman075@gmail.com
State Accepted
Commit 558331e0f3deac0f8cb586204ce96bd6455b4167
Delegated to: Stefano Babic
Headers show
Series IMXRT: Maintnice updates | expand

Commit Message

Jesse T March 17, 2022, 6:33 p.m. UTC
If FALCON mode is enabled we have a missing include in spl_start_uboot.

Signed-off-by: Jesse Taube <Mr.Bossman075@gmail.com>
---
 board/freescale/imxrt1020-evk/imxrt1020-evk.c | 1 +
 board/freescale/imxrt1050-evk/imxrt1050-evk.c | 1 +
 2 files changed, 2 insertions(+)

Comments

Stefano Babic April 12, 2022, 9:39 p.m. UTC | #1
> If FALCON mode is enabled we have a missing include in spl_start_uboot.
> Signed-off-by: Jesse Taube <Mr.Bossman075@gmail.com>
Applied to u-boot-imx, master, thanks !

Best regards,
Stefano Babic
diff mbox series

Patch

diff --git a/board/freescale/imxrt1020-evk/imxrt1020-evk.c b/board/freescale/imxrt1020-evk/imxrt1020-evk.c
index 54a733b12c..785da604b9 100644
--- a/board/freescale/imxrt1020-evk/imxrt1020-evk.c
+++ b/board/freescale/imxrt1020-evk/imxrt1020-evk.c
@@ -13,6 +13,7 @@ 
 #include <asm/global_data.h>
 #include <asm/io.h>
 #include <asm/armv7m.h>
+#include <serial.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
diff --git a/board/freescale/imxrt1050-evk/imxrt1050-evk.c b/board/freescale/imxrt1050-evk/imxrt1050-evk.c
index 6132916578..4b82ee5e9c 100644
--- a/board/freescale/imxrt1050-evk/imxrt1050-evk.c
+++ b/board/freescale/imxrt1050-evk/imxrt1050-evk.c
@@ -13,6 +13,7 @@ 
 #include <asm/global_data.h>
 #include <asm/io.h>
 #include <asm/armv7m.h>
+#include <serial.h>
 
 DECLARE_GLOBAL_DATA_PTR;