diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/xea.h | 1 | ||||
-rw-r--r-- | include/image.h | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/include/configs/xea.h b/include/configs/xea.h index df058193d6..1207f75017 100644 --- a/include/configs/xea.h +++ b/include/configs/xea.h @@ -47,7 +47,6 @@ #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR /* Extra Environment */ -#define CONFIG_PREBOOT "run prebootcmd" #define CONFIG_HOSTNAME "xea" #define CONFIG_EXTRA_ENV_SETTINGS \ diff --git a/include/image.h b/include/image.h index 00bc03bebe..41473dbb9c 100644 --- a/include/image.h +++ b/include/image.h @@ -1552,6 +1552,10 @@ int board_fit_config_name_match(const char *name); * @return no return value (failure should be handled internally) */ void board_fit_image_post_process(void **p_image, size_t *p_size); +#else +static inline void board_fit_image_post_process(void **p_image, size_t *p_size) +{ +} #endif /* CONFIG_SPL_FIT_IMAGE_POST_PROCESS */ #define FDT_ERROR ((ulong)(-1)) |