diff options
author | Aaron Durbin <adurbin@chromium.org> | 2015-05-26 11:26:34 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2015-05-26 19:13:13 +0200 |
commit | 7138ee445c713867edd67c20fef10444f7aea6d1 (patch) | |
tree | e587ee311f7e2953cfefa1323745e5e0e2877785 /src/include/cbmem.h | |
parent | 1de648e272a7da523f05ca9d19226a308c1af852 (diff) | |
download | coreboot-7138ee445c713867edd67c20fef10444f7aea6d1.tar.xz |
cbmem: remove cbmem_set_top()
Now that the users of cbmem_set_top() always provide a consistent
cbmem_top() value there's no need to have cbmem_set_top() around.
Therefore, delete it.
Change-Id: I0c96e2b8b829eddbeb1fdf755ed59c51ea689d1b
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/10314
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins)
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/include/cbmem.h')
-rw-r--r-- | src/include/cbmem.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/include/cbmem.h b/src/include/cbmem.h index 0a7ca89cd4..a8ab3cd61b 100644 --- a/src/include/cbmem.h +++ b/src/include/cbmem.h @@ -176,9 +176,6 @@ void cbmem_initialize_empty_id_size(u32 id, u64 size); * below 4GiB. */ void *cbmem_top(void); -/* Set the top address for dynamic cbmem. Not for new designs. */ -void cbmem_set_top(void *ramtop); - /* Add a cbmem entry of a given size and id. These return NULL on failure. The * add function performs a find first and do not check against the original * size. */ |