aboutsummaryrefslogtreecommitdiff
path: root/src/soc/samsung
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2013-10-08 23:16:51 -0700
committerMarc Jones <marc.jones@se-eng.com>2014-08-29 06:43:14 +0200
commitd81f409514b99189c943d06fa9a8fa01d8178fc8 (patch)
treec6a5c0030be2ea27816877be22d150130658887e /src/soc/samsung
parentf09f2247d7584975d17a7d4755b279c1c3f6f001 (diff)
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@google.com> Reviewed-on: https://chromium-review.googlesource.com/172400 Reviewed-by: David Hendricks <dhendrix@chromium.org> Commit-Queue: Gabe Black <gabeblack@chromium.org> Tested-by: Gabe Black <gabeblack@chromium.org> (cherry picked from commit 9100d475ebcc4dae23184583a6cc0162577e70d1) Signed-off-by: Isaac Christensen <isaac.christensen@se-eng.com> Reviewed-on: http://review.coreboot.org/6781 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'src/soc/samsung')
-rw-r--r--src/soc/samsung/exynos5250/cpu.c4
-rw-r--r--src/soc/samsung/exynos5420/cpu.c4
2 files changed, 4 insertions, 4 deletions
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,
};
diff --git a/src/soc/samsung/exynos5420/cpu.c b/src/soc/samsung/exynos5420/cpu.c
index a5dac7a1cf..506b6768c6 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,
};