]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
common: Fix up malloc() comment in reserve_noncached()
authorSimon Glass <sjg@chromium.org>
Mon, 21 Oct 2024 08:19:25 +0000 (10:19 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 25 Oct 2024 20:22:24 +0000 (14:22 -0600)
The function name has changed, so update it.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
common/board_f.c

index f1bd70fdd6c54f5d51b87d19ddb4294a018fc6dd..a87411ee350aa29f0e76721d201465c0c6d737f2 100644 (file)
@@ -501,9 +501,9 @@ static unsigned long reserve_stack_aligned(size_t size)
 static int reserve_noncached(void)
 {
        /*
-        * The value of gd->start_addr_sp must match the value of malloc_start
-        * calculated in board_r.c:initr_malloc(), which is passed to
-        * dlmalloc.c:mem_malloc_init() and then used by
+        * The value of gd->start_addr_sp must match the value of
+        * mem_malloc_start calculated in board_r.c:initr_malloc(), which is
+        * passed to dlmalloc.c:mem_malloc_init() and then used by
         * cache.c:noncached_init()
         *
         * These calculations must match the code in cache.c:noncached_init()