From: Simon Glass Date: Mon, 21 Oct 2019 23:26:44 +0000 (-0600) Subject: tiny-printf: Add print_grouped_ull() X-Git-Tag: v2020.01-rc2~27^2~11 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=dee74e6cc4a94da19b99309ad1c99eb5bddfe217;p=oweals%2Fu-boot.git tiny-printf: Add print_grouped_ull() This function is used in the bootstage report which may be trigged in TPL or TPL. Add a very basic implication of this function so that it builds. There is no attempt to get the formatting right, since this would add too much code size. Signed-off-by: Simon Glass Reviewed-by: Stefan Roese --- diff --git a/lib/tiny-printf.c b/lib/tiny-printf.c index 632b424914..d46d206873 100644 --- a/lib/tiny-printf.c +++ b/lib/tiny-printf.c @@ -389,3 +389,9 @@ int snprintf(char *buf, size_t size, const char *fmt, ...) return ret; } + +void print_grouped_ull(unsigned long long int_val, int digits) +{ + /* Don't try to print the upper 32-bits */ + printf("%ld ", (ulong)int_val); +}