Re: [U-Boot] [PATCH v3 7/7] malloc_f: enable SYS_MALLOC_F by default if DM is on

2015-02-20 Thread Simon Glass
Hi Masahiro, On 19 February 2015 at 22:25, Masahiro Yamada wrote: > To use Derive Model before relocation, CONFIG_SYS_MALLOC_F Driver > must be enabled. This should probably be a common requirement > for all the boards with Driver Model implementation. > Let's handle it globally rather than pe

[U-Boot] [PATCH v3 7/7] malloc_f: enable SYS_MALLOC_F by default if DM is on

2015-02-19 Thread Masahiro Yamada
To use Derive Model before relocation, CONFIG_SYS_MALLOC_F must be enabled. This should probably be a common requirement for all the boards with Driver Model implementation. Let's handle it globally rather than per-SoC or per-board. Signed-off-by: Masahiro Yamada --- Changes in v3: - Newly ad