diff options
| author | Andreas Dannenberg <[email protected]> | 2016-03-28 13:58:03 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2016-04-01 17:17:57 -0400 |
| commit | f00169a915a4abcb03ba323755117959fbbc632e (patch) | |
| tree | d994d3fdaad673881268bc4ad876bdad77e11fc6 | |
| parent | 9d906bf0bd46e539cd691f0fa1ea1cc838cf98c4 (diff) | |
arm: spl: Align default board_init_f comment with code
The default board_init_f() implementation performs a call to
board_init_r() as the last step of the sequence. Fix the comment
for this function to reflect the actual execution flow.
Signed-off-by: Andreas Dannenberg <[email protected]>
| -rw-r--r-- | arch/arm/lib/spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/lib/spl.c b/arch/arm/lib/spl.c index d737a5cce83..e42886840ed 100644 --- a/arch/arm/lib/spl.c +++ b/arch/arm/lib/spl.c @@ -27,7 +27,7 @@ gd_t gdata __attribute__ ((section(".data"))); /* * In the context of SPL, board_init_f must ensure that any clocks/etc for * DDR are enabled, ensure that the stack pointer is valid, clear the BSS - * and call board_init_f. We provide this version by default but mark it + * and call board_init_r. We provide this version by default but mark it * as __weak to allow for platforms to do this in their own way if needed. */ void __weak board_init_f(ulong dummy) |
