[U-Boot] [PATCH 2/8] arm: mx6: gw_ventana: Define CONFIG_SYS_MALLOC_F_LEN

2014-12-16 Thread Marek Vasut
This board uses setup_i2c() in SPL. The setup_i2c() function internally calls gpio_request(), which in turn internally calls strdup(). The strdup() requires a running mallocator, so this patch makes the mallocator available. Signed-off-by: Marek Vasut Cc: Igor Grinberg Cc: Nikita Kiryanov Cc: S

Re: [U-Boot] [PATCH 2/8] arm: mx6: gw_ventana: Define CONFIG_SYS_MALLOC_F_LEN

2014-12-30 Thread Stefano Babic
On 16/12/2014 14:09, Marek Vasut wrote: > This board uses setup_i2c() in SPL. The setup_i2c() function internally > calls gpio_request(), which in turn internally calls strdup(). The strdup() > requires a running mallocator, so this patch makes the mallocator available. > > Signed-off-by: Marek Va