diff --git a/arch/arm/mach-rockchip/spl.c b/arch/arm/mach-rockchip/spl.c index be2654a435..cb370c0625 100644 --- a/arch/arm/mach-rockchip/spl.c +++ b/arch/arm/mach-rockchip/spl.c @@ -10,6 +10,7 @@ #include #include #include +#include #include #ifdef CONFIG_ROCKCHIP_PRELOADER_ATAGS #include @@ -295,3 +296,12 @@ void spl_next_stage(struct spl_image_info *spl) } } #endif + +int spl_board_prepare_for_jump(struct spl_image_info *spl_image) +{ +#if CONFIG_SPL_FIT_ROLLBACK_PROTECT + /* TODO */ + printf("spl fit: rollback protect not implement\n"); +#endif + return 0; +}