From d81f409514b99189c943d06fa9a8fa01d8178fc8 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Tue, 8 Oct 2013 23:16:51 -0700 Subject: exynos: Fix the name of the chip_operations structures. The exynos directories had been moved from src/cpu to src/soc, but the name of the chip_operations structure wasn't updated properly. That meant that the SOCs never installed their memory resources and the ram stage would fail to load the payload. Change-Id: Ib60489b6d3434e3ebd13827a804452f762747f1b Signed-off-by: Gabe Black Reviewed-on: https://chromium-review.googlesource.com/172400 Reviewed-by: David Hendricks Commit-Queue: Gabe Black Tested-by: Gabe Black (cherry picked from commit 9100d475ebcc4dae23184583a6cc0162577e70d1) Signed-off-by: Isaac Christensen Reviewed-on: http://review.coreboot.org/6781 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan --- src/soc/samsung/exynos5250/cpu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/soc/samsung/exynos5250') diff --git a/src/soc/samsung/exynos5250/cpu.c b/src/soc/samsung/exynos5250/cpu.c index d880f5f761..3a2b62d3ce 100644 --- a/src/soc/samsung/exynos5250/cpu.c +++ b/src/soc/samsung/exynos5250/cpu.c @@ -147,8 +147,8 @@ static void enable_exynos5250_dev(device_t dev) dev->ops = &cpu_ops; } -struct chip_operations cpu_samsung_exynos5250_ops = { - CHIP_NAME("CPU Samsung Exynos 5250") +struct chip_operations soc_samsung_exynos5250_ops = { + CHIP_NAME("SOC Samsung Exynos 5250") .enable_dev = enable_exynos5250_dev, }; -- cgit v1.2.3