Re: [U-Boot] [PATCH] spl: fix debug prints for tiny printf

2018-11-02 Thread Simon Glass
On 2 November 2018 at 14:49, Simon Goldschmidt wrote: > Tiny printf does not support %.*s and %lX. Since tiny printf should > be very common in SPL, replace these by %32s (for printing image > name) and %lx. > > Signed-off-by: Simon Goldschmidt > --- > > common/spl/spl.c | 14 ++ > 1

[U-Boot] [PATCH] spl: fix debug prints for tiny printf

2018-11-02 Thread Simon Goldschmidt
Tiny printf does not support %.*s and %lX. Since tiny printf should be very common in SPL, replace these by %32s (for printing image name) and %lx. Signed-off-by: Simon Goldschmidt --- common/spl/spl.c | 14 ++ 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/common/spl