[coreboot-gerrit] New patch to review for coreboot: b6d20eb exynos: Fix the name of the chip_operations structures.

Isaac Christensen (isaac.christensen@se-eng.com) gerrit at coreboot.org
Thu Aug 28 01:22:43 CEST 2014


Isaac Christensen (isaac.christensen at se-eng.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6781

-gerrit

commit b6d20ebc71f5d1dfba6faa36bb2f7631197f8246
Author: Gabe Black <gabeblack at google.com>
Date:   Tue Oct 8 23:16:51 2013 -0700

    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 <gabeblack at google.com>
    Reviewed-on: https://chromium-review.googlesource.com/172400
    Reviewed-by: David Hendricks <dhendrix at chromium.org>
    Commit-Queue: Gabe Black <gabeblack at chromium.org>
    Tested-by: Gabe Black <gabeblack at chromium.org>
    (cherry picked from commit 9100d475ebcc4dae23184583a6cc0162577e70d1)
    Signed-off-by: Isaac Christensen <isaac.christensen at se-eng.com>
---
 src/soc/samsung/exynos5250/cpu.c | 4 ++--
 src/soc/samsung/exynos5420/cpu.c | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/soc/samsung/exynos5250/cpu.c b/src/soc/samsung/exynos5250/cpu.c
index 6b3ee8b..b85ae62 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,
 };
 
diff --git a/src/soc/samsung/exynos5420/cpu.c b/src/soc/samsung/exynos5420/cpu.c
index 3f915f0..f7ef4d4 100644
--- a/src/soc/samsung/exynos5420/cpu.c
+++ b/src/soc/samsung/exynos5420/cpu.c
@@ -177,7 +177,7 @@ static void enable_exynos5420_dev(device_t dev)
 	dev->ops = &cpu_ops;
 }
 
-struct chip_operations cpu_samsung_exynos5420_ops = {
-	CHIP_NAME("CPU Samsung Exynos 5420")
+struct chip_operations soc_samsung_exynos5420_ops = {
+	CHIP_NAME("SOC Samsung Exynos 5420")
 	.enable_dev = enable_exynos5420_dev,
 };



More information about the coreboot-gerrit mailing list