Re: [U-Boot] [PATCH] vsprintf.c: add GUID printing

2017-08-08 Thread Rob Clark
On Tue, Aug 8, 2017 at 12:56 PM, Heinrich Schuchardt wrote: > On 08/06/2017 01:39 PM, Rob Clark wrote: >> This works (roughly) the same way as linux's, but we currently always >> print lower-case (ie. we just keep %pUB and %pUL for compat with linux), >> mostly just because

Re: [U-Boot] [PATCH] vsprintf.c: add GUID printing

2017-08-08 Thread Heinrich Schuchardt
On 08/06/2017 01:39 PM, Rob Clark wrote: > This works (roughly) the same way as linux's, but we currently always > print lower-case (ie. we just keep %pUB and %pUL for compat with linux), > mostly just because that is what uuid_bin_to_str() supports. > > %pUb:

[U-Boot] [PATCH] vsprintf.c: add GUID printing

2017-08-06 Thread Rob Clark
This works (roughly) the same way as linux's, but we currently always print lower-case (ie. we just keep %pUB and %pUL for compat with linux), mostly just because that is what uuid_bin_to_str() supports. %pUb: 01020304-0506-0708-090a-0b0c0d0e0f10 %pUl: 04030201-0605-0807-090a-0b0c0d0e0f10