]> git.dujemihanovic.xyz Git - u-boot.git/commit
common: Tidy up how malloc() is inited
authorSimon Glass <sjg@chromium.org>
Mon, 21 Oct 2024 08:19:26 +0000 (10:19 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 25 Oct 2024 20:22:24 +0000 (14:22 -0600)
commit41fecdc94e3b3714f33a28c139f61cfa48bf16f9
treec43bea78417b8e4b4bab5fa9b79678b356312362
parent09f5be613a7cc812c9c5865eb384d311990f7d6d
common: Tidy up how malloc() is inited

The call to malloc() is a bit strange. The naming of the arguments
suggests that an address is passed, but in fact it is a pointer, at
least in the board_init_r() function and SPL equivalent.

Update it to work as described. Add a function comment as well.

Note that this does adjustment does not extend into the malloc()
implementation itself, apart from changing mem_malloc_init(), since
there are lots of casts and pointers and integers are used
interchangeably.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
common/board_r.c
common/dlmalloc.c
common/spl/spl.c
include/malloc.h