UPSTREAM: cpu/amd/fam10/ram_calc: Remove superfluous guard

AMD_FAM10H code enables early cbmem by default.

BUG=none
BRANCH=none
TEST=none

Change-Id: Ie52b4f096e2bd77ca6cd8fe12f3d3f9d0bf472be
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Original-Commit-Id: e1058c7c99
Original-Change-Id: Ifad007f6604bb612d544cf1387938a8fef1cceb4
Original-Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Original-Reviewed-on: https://review.coreboot.org/20148
Original-Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Original-Reviewed-by: Martin Roth <martinroth@google.com>
Original-Reviewed-by: Philippe Mathieu-Daud <philippe.mathieu.daude@gmail.com>
Reviewed-on: https://chromium-review.googlesource.com/539197
Commit-Ready: Patrick Georgi <pgeorgi@chromium.org>
Tested-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-by: Patrick Georgi <pgeorgi@chromium.org>
This commit is contained in:
Arthur Heymans 2017-06-11 09:39:11 +02:00 committed by chrome-bot
commit 5def309169

View file

@ -26,7 +26,6 @@
#include "ram_calc.h"
#if !IS_ENABLED(CONFIG_LATE_CBMEM_INIT)
static inline uint8_t is_fam15h(void)
{
uint8_t fam15h = 0;
@ -96,4 +95,3 @@ void *cbmem_top(void)
return (void *) topmem - get_uma_memory_size(topmem) - get_cc6_memory_size();
}
#endif