diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2015-12-04 22:27:35 (GMT) |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-12-14 00:07:30 (GMT) |
commit | 4363de63a88f3e9490cb46ce4c92e7c2d2497ba8 (patch) | |
tree | dc10aa913149753d76818ba095d0c368ad67c85f | |
parent | 717f8845ac4b25cfd329d161423622433dfeb990 (diff) | |
download | u-boot-fsl-qoriq-4363de63a88f3e9490cb46ce4c92e7c2d2497ba8.tar.xz |
spl: use panic_str instead of panic
For a simple static string, use panic_str() which prevents calling
printf needlessly.
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | common/spl/spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/spl.c b/common/spl/spl.c index 7a393dc..6e6dee7 100644 --- a/common/spl/spl.c +++ b/common/spl/spl.c @@ -452,7 +452,7 @@ ulong spl_relocate_stack_gd(void) #ifdef CONFIG_SPL_SYS_MALLOC_SIMPLE if (CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN) { if (!(gd->flags & GD_FLG_SPL_INIT)) - panic("spl_init must be called before heap reloc"); + panic_str("spl_init must be called before heap reloc"); ptr -= CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN; gd->malloc_base = ptr; |