diff options
author | Gabe Black <gabeblack@google.com> | 2013-10-08 23:16:51 -0700 |
---|---|---|
committer | Marc Jones <marc.jones@se-eng.com> | 2014-08-29 06:43:14 +0200 |
commit | d81f409514b99189c943d06fa9a8fa01d8178fc8 (patch) | |
tree | c6a5c0030be2ea27816877be22d150130658887e /src/soc/samsung/exynos5420/cpu.c | |
parent | f09f2247d7584975d17a7d4755b279c1c3f6f001 (diff) | |
download | coreboot-d81f409514b99189c943d06fa9a8fa01d8178fc8.tar.xz |
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/exynos5420/cpu.c')
-rw-r--r-- | src/soc/samsung/exynos5420/cpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
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, }; |