diff options
| author | Lukas Auer <[email protected]> | 2019-08-21 21:14:40 +0200 |
|---|---|---|
| committer | Andes <[email protected]> | 2019-08-26 16:07:42 +0800 |
| commit | c4f603f7233230879d91e9115b8f2730ec9be499 (patch) | |
| tree | 3583e85d484f1f1922f3f0a7d6c05d6fb929df13 /include | |
| parent | 50b4b80f597b9f59b98adbdbad691b1027bd501a (diff) | |
fdtdec: make CONFIG_OF_PRIOR_STAGE available in SPL
The current preprocessor logic prevents CONFIG_OF_PRIOR_STAGE from being
used in U-Boot SPL. Change the logic to also make it available in U-Boot
SPL.
Signed-off-by: Lukas Auer <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
Tested-by: Bin Meng <[email protected]>
Reviewed-by: Anup Patel <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/fdtdec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fdtdec.h b/include/fdtdec.h index e6c22dd5cd5..635f53083b7 100644 --- a/include/fdtdec.h +++ b/include/fdtdec.h @@ -54,7 +54,7 @@ struct bd_info; #define SPL_BUILD 0 #endif -#if CONFIG_IS_ENABLED(OF_PRIOR_STAGE) +#ifdef CONFIG_OF_PRIOR_STAGE extern phys_addr_t prior_stage_fdt_address; #endif |
