aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon Glass2019-11-14 12:57:44 -0700
committerTom Rini2019-12-02 18:25:02 -0500
commit428a6a18fe5ad5c007fd79a905429ee3ef3af1ea (patch)
tree3a95e160e24fe4d89b845e68db1be643eea006c4 /include
parent288b29e44d30afd946724ac577125ea9f80c8aca (diff)
common: Drop board_show_dram()
This function is not defined by any boards so the feature is not used. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include')
-rw-r--r--include/common.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/common.h b/include/common.h
index 5bd778a4f46..16d4b0612f8 100644
--- a/include/common.h
+++ b/include/common.h
@@ -74,15 +74,6 @@ extern u8 __dtb_dt_spl_begin[]; /* embedded device tree blob for SPL/TPL */
int mdm_init(void);
/**
- * Show the DRAM size in a board-specific way
- *
- * This is used by boards to display DRAM information in their own way.
- *
- * @param size Size of DRAM (which should be displayed along with other info)
- */
-void board_show_dram(phys_size_t size);
-
-/**
* Get the uppermost pointer that is valid to access
*
* Some systems may not map all of their address space. This function allows