Re: [U-Boot] [PATCH v2] board_f: reserve noncached space below malloc area

2019-08-26 Thread Tom Rini
On Fri, Aug 16, 2019 at 09:57:44AM -0700, Vikas Manocha wrote: > Noncached area at present is being initialized to random space after malloc > area. It works in most the cases as it goes to stack area & stack is not > overwriting it being far from it. > > Signed-off-by: Vikas Manocha Applied

[U-Boot] [PATCH v2] board_f: reserve noncached space below malloc area

2019-08-16 Thread Vikas Manocha
Noncached area at present is being initialized to random space after malloc area. It works in most the cases as it goes to stack area & stack is not overwriting it being far from it. Signed-off-by: Vikas Manocha --- Changes in v2: added blank line before return common/board_f.c | 17