Re: [U-Boot] [PATCH 1/7] spl: use panic_str instead of panic

2015-12-13 Thread Simon Glass
Applied to u-boot-rockchip, thanks! ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 1/7] spl: use panic_str instead of panic

2015-12-07 Thread Simon Glass
On 6 December 2015 at 09:45, Simon Glass wrote: > > On 4 December 2015 at 15:27, Sjoerd Simons > wrote: > > For a simple static string, use panic_str() which prevents calling > > printf needlessly. > > > > Signed-off-by: Sjoerd Simons > > --- > > > > common/spl/spl.c | 2 +- > > 1 file changed,

Re: [U-Boot] [PATCH 1/7] spl: use panic_str instead of panic

2015-12-06 Thread Simon Glass
On 4 December 2015 at 15:27, Sjoerd Simons wrote: > For a simple static string, use panic_str() which prevents calling > printf needlessly. > > Signed-off-by: Sjoerd Simons > --- > > common/spl/spl.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Simon Glass _

[U-Boot] [PATCH 1/7] spl: use panic_str instead of panic

2015-12-04 Thread Sjoerd Simons
For a simple static string, use panic_str() which prevents calling printf needlessly. Signed-off-by: Sjoerd Simons --- common/spl/spl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/spl/spl.c b/common/spl/spl.c index 7a393dc..6e6dee7 100644 --- a/common/spl/spl.c ++