Re: [U-Boot] [PATCH 05/24] SPL: tiny-printf: add "l" modifier

2016-11-29 Thread Simon Glass
Hi Andre, On 28 November 2016 at 18:13, André Przywara wrote: > On 28/11/16 00:22, André Przywara wrote: >> On 27/11/16 17:02, Simon Glass wrote: >> >> Hi, >> >>> On 23 November 2016 at 20:19, Siarhei Siamashka >>> wrote: On Sun, 20 Nov

Re: [U-Boot] [PATCH 05/24] SPL: tiny-printf: add "l" modifier

2016-11-28 Thread André Przywara
On 28/11/16 00:22, André Przywara wrote: > On 27/11/16 17:02, Simon Glass wrote: > > Hi, > >> On 23 November 2016 at 20:19, Siarhei Siamashka >> wrote: >>> On Sun, 20 Nov 2016 14:56:59 + >>> Andre Przywara wrote: >>> tiny-printf

Re: [U-Boot] [PATCH 05/24] SPL: tiny-printf: add "l" modifier

2016-11-27 Thread André Przywara
On 27/11/16 17:02, Simon Glass wrote: Hi, > On 23 November 2016 at 20:19, Siarhei Siamashka > wrote: >> On Sun, 20 Nov 2016 14:56:59 + >> Andre Przywara wrote: >> >>> tiny-printf does not know about the "l" modifier so far, which breaks

Re: [U-Boot] [PATCH 05/24] SPL: tiny-printf: add "l" modifier

2016-11-27 Thread André Przywara
On 24/11/16 03:19, Siarhei Siamashka wrote: > On Sun, 20 Nov 2016 14:56:59 + > Andre Przywara wrote: > >> tiny-printf does not know about the "l" modifier so far, which breaks >> the crash dump on AArch64, because it uses %lx to print the registers. >> Add an easy way

Re: [U-Boot] [PATCH 05/24] SPL: tiny-printf: add "l" modifier

2016-11-27 Thread Simon Glass
Hi, On 23 November 2016 at 20:19, Siarhei Siamashka wrote: > On Sun, 20 Nov 2016 14:56:59 + > Andre Przywara wrote: > >> tiny-printf does not know about the "l" modifier so far, which breaks >> the crash dump on AArch64, because it uses

Re: [U-Boot] [PATCH 05/24] SPL: tiny-printf: add "l" modifier

2016-11-23 Thread Siarhei Siamashka
On Sun, 20 Nov 2016 14:56:59 + Andre Przywara wrote: > tiny-printf does not know about the "l" modifier so far, which breaks > the crash dump on AArch64, because it uses %lx to print the registers. > Add an easy way of handling longs correctly. I can't help but

Re: [U-Boot] [PATCH 05/24] SPL: tiny-printf: add "l" modifier

2016-11-21 Thread Alexander Graf
On 21/11/2016 16:56, Andre Przywara wrote: Hi Alex, On 21/11/16 15:42, Alexander Graf wrote: On 20/11/2016 15:56, Andre Przywara wrote: tiny-printf does not know about the "l" modifier so far, which breaks the crash dump on AArch64, because it uses %lx to print the registers. Add an easy

Re: [U-Boot] [PATCH 05/24] SPL: tiny-printf: add "l" modifier

2016-11-21 Thread Andre Przywara
Hi Alex, On 21/11/16 15:42, Alexander Graf wrote: > > > On 20/11/2016 15:56, Andre Przywara wrote: >> tiny-printf does not know about the "l" modifier so far, which breaks >> the crash dump on AArch64, because it uses %lx to print the registers. >> Add an easy way of handling longs correctly.

Re: [U-Boot] [PATCH 05/24] SPL: tiny-printf: add "l" modifier

2016-11-21 Thread Alexander Graf
On 20/11/2016 15:56, Andre Przywara wrote: tiny-printf does not know about the "l" modifier so far, which breaks the crash dump on AArch64, because it uses %lx to print the registers. Add an easy way of handling longs correctly. Signed-off-by: Andre Przywara ---

[U-Boot] [PATCH 05/24] SPL: tiny-printf: add "l" modifier

2016-11-20 Thread Andre Przywara
tiny-printf does not know about the "l" modifier so far, which breaks the crash dump on AArch64, because it uses %lx to print the registers. Add an easy way of handling longs correctly. Signed-off-by: Andre Przywara --- lib/tiny-printf.c | 43