Re: [U-Boot] [PATCH] spl: Correct call to spl_common_init() with SPL_STACK_R_MALLOC_SIMPLE_LEN

2017-03-20 Thread Lokesh Vutla
On Monday 20 March 2017 11:49 PM, Tom Rini wrote: > Calls to IS_ENABLED() on a non-y/n option will always be false, even > when set. We can correct this by adding a new bool value that is set > based on the conditions required for SPL_STACK_R_MALLOC_SIMPLE_LEN to be > set instead. > > Fixes: 34

[U-Boot] [PATCH] spl: Correct call to spl_common_init() with SPL_STACK_R_MALLOC_SIMPLE_LEN

2017-03-20 Thread Tom Rini
Calls to IS_ENABLED() on a non-y/n option will always be false, even when set. We can correct this by adding a new bool value that is set based on the conditions required for SPL_STACK_R_MALLOC_SIMPLE_LEN to be set instead. Fixes: 340f418acd11 ("spl: Add spl_early_init()") Reported-by: Lokesh Vut