diff options
author | Tom Rini <trini@konsulko.com> | 2022-10-28 20:27:09 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-11-10 10:08:55 -0500 |
commit | 02f5a01441ecd356b73b491c99d635c67b2ba207 (patch) | |
tree | b5e5bb7ba388ed617b8d4b3e2f0d8145ccba84bf /common/board_f.c | |
parent | 15713fc85579b4d0fc4294d8fa0f3a0f334054b0 (diff) | |
download | u-boot-02f5a01441ecd356b73b491c99d635c67b2ba207.zip u-boot-02f5a01441ecd356b73b491c99d635c67b2ba207.tar.gz u-boot-02f5a01441ecd356b73b491c99d635c67b2ba207.tar.bz2 |
SYS_NONCACHED_MEMORY: Correct comment in common/board_f.c
The comment block in reserve_noncached has a typo in one filename and
an incorrect filename in another function reference. Correct both of
these.
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/board_f.c')
-rw-r--r-- | common/board_f.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/board_f.c b/common/board_f.c index 7c26e23..e6117a7 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -475,8 +475,8 @@ static int reserve_noncached(void) { /* * The value of gd->start_addr_sp must match the value of malloc_start - * calculated in boatrd_f.c:initr_malloc(), which is passed to - * board_r.c:mem_malloc_init() and then used by + * 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() |