common: spl: initial spl->next_stage

Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
Change-Id: I5066612be4c90ff674b61034768eeaba9b9c9b85
This commit is contained in:
Joseph Chen 2020-05-21 20:45:18 +08:00 committed by Jianhong Chen
parent a1247eb812
commit d41e543aa6
1 changed files with 4 additions and 1 deletions

View File

@ -83,7 +83,10 @@ void __weak spl_perform_fixups(struct spl_image_info *spl_image)
}
/* Get the next stage process */
__weak void spl_next_stage(struct spl_image_info *spl) {}
__weak void spl_next_stage(struct spl_image_info *spl)
{
spl->next_stage = SPL_NEXT_STAGE_UBOOT;
}
/* Weak default function for arch/board-specific preppare before jumping */
int __weak spl_board_prepare_for_jump(struct spl_image_info *spl_image)