diff options
| author | Peng Fan <[email protected]> | 2026-01-08 19:06:55 +0800 |
|---|---|---|
| committer | Fabio Estevam <[email protected]> | 2026-01-17 15:00:23 -0300 |
| commit | ab24985b8cd03472352a6178f1aef9d4e8ce54d8 (patch) | |
| tree | d48f6d6692927b3fd90f573eb374d051f31277b8 | |
| parent | d12df78f2a70785e9a5e4289b69ad8c6d24bc9a0 (diff) | |
imx95/4_evk: Add missing header
Include asm/global_data.h for using DECLARE_GLOBAL_DATA_PTR.
Signed-off-by: Peng Fan <[email protected]>
| -rw-r--r-- | board/freescale/imx94_evk/spl.c | 1 | ||||
| -rw-r--r-- | board/freescale/imx95_evk/spl.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/board/freescale/imx94_evk/spl.c b/board/freescale/imx94_evk/spl.c index 0aa75ea907e..797806a8d4d 100644 --- a/board/freescale/imx94_evk/spl.c +++ b/board/freescale/imx94_evk/spl.c @@ -7,6 +7,7 @@ #include <init.h> #include <spl.h> #include <asm/gpio.h> +#include <asm/global_data.h> #include <asm/sections.h> #include <asm/arch/clock.h> #include <asm/arch/mu.h> diff --git a/board/freescale/imx95_evk/spl.c b/board/freescale/imx95_evk/spl.c index 90c7429272b..752d7f916b6 100644 --- a/board/freescale/imx95_evk/spl.c +++ b/board/freescale/imx95_evk/spl.c @@ -6,6 +6,7 @@ #include <hang.h> #include <init.h> #include <spl.h> +#include <asm/global_data.h> #include <asm/sections.h> #include <asm/arch/clock.h> #include <asm/arch/mu.h> |
