Re: [PATCH v2 1/3] lib/vsprintf.c: implement printf() in terms of vprintf()

2021-07-16 Thread Tom Rini
On Fri, May 28, 2021 at 12:20:44AM +0200, Rasmus Villemoes wrote: > This saves some code, both in terms of #LOC and .text size, and it is > also the normal convention that foo(...) is implemented in terms of > vfoo(). > > Reviewed-by: Simon Glass > Signed-off-by: Rasmus Villemoes Applied to u-

[PATCH v2 1/3] lib/vsprintf.c: implement printf() in terms of vprintf()

2021-05-27 Thread Rasmus Villemoes
This saves some code, both in terms of #LOC and .text size, and it is also the normal convention that foo(...) is implemented in terms of vfoo(). Reviewed-by: Simon Glass Signed-off-by: Rasmus Villemoes --- lib/vsprintf.c | 13 + 1 file changed, 1 insertion(+), 12 deletions(-) diff