From 4da487eae8858dc132d60b7ffb0015e9c96b0df6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ky=C3=B6sti=20M=C3=A4lkki?= Date: Thu, 19 Mar 2015 06:58:15 +0200 Subject: CBMEM: Add LATE_CBMEM_INIT guards MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Our target is to get rid of backup_top_of_ram() and get_top_of_ram() entirely so only declare these with LATE_CBMEM_INIT=y. Change-Id: I54f549fe774996f4d803f9ec527e0fac46f6576f Signed-off-by: Kyösti Mälkki Reviewed-on: http://review.coreboot.org/8749 Tested-by: build bot (Jenkins) Reviewed-by: Timothy Pearson --- src/southbridge/amd/sb800/early_setup.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/southbridge/amd/sb800/early_setup.c') diff --git a/src/southbridge/amd/sb800/early_setup.c b/src/southbridge/amd/sb800/early_setup.c index 69bc3bdbed..f9eed11618 100644 --- a/src/southbridge/amd/sb800/early_setup.c +++ b/src/southbridge/amd/sb800/early_setup.c @@ -673,6 +673,7 @@ int acpi_get_sleep_type(void) return ((tmp & (7 << 10)) >> 10); } +#if IS_ENABLED(CONFIG_LATE_CBMEM_INIT) unsigned long get_top_of_ram(void) { uint32_t xdata = 0; @@ -687,5 +688,6 @@ unsigned long get_top_of_ram(void) } return (unsigned long) xdata; } +#endif #endif -- cgit v1.2.3