diff options
author | David Hendricks <dhendrix@chromium.org> | 2013-01-28 12:24:54 -0800 |
---|---|---|
committer | David Hendricks <dhendrix@chromium.org> | 2013-01-29 00:02:53 +0100 |
commit | 1fb9bfa0f90c73c73bf0b9b7d9d5a2af6d7fe530 (patch) | |
tree | 16521e78bbd6b5721ee33b8392356f4c78853385 /src/cpu/samsung | |
parent | 4a484203d011c6fb3dd6f0edb2fadb3f2b07220c (diff) | |
download | coreboot-1fb9bfa0f90c73c73bf0b9b7d9d5a2af6d7fe530.tar.xz |
armv7: nuke global_data.h and remove some references to gd struct
This begins to remove references to global data which u-boot used.
There are still many commented out references to gd-> and bd-> which
we'll fix once we're happy with the replacements.
Change-Id: Ie1b40a997e28a118f8f3ad96a2f9a2462d32fbe3
Signed-off-by: David Hendricks <dhendrix@chromium.org>
Reviewed-on: http://review.coreboot.org/2210
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/cpu/samsung')
-rw-r--r-- | src/cpu/samsung/exynos5-common/spl_boot.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/cpu/samsung/exynos5-common/spl_boot.c b/src/cpu/samsung/exynos5-common/spl_boot.c index ecff87131e..ddf69372ef 100644 --- a/src/cpu/samsung/exynos5-common/spl_boot.c +++ b/src/cpu/samsung/exynos5-common/spl_boot.c @@ -55,9 +55,6 @@ #include <arch/io.h> -/* FIXME(dhendrix): clean out u-boot global data stuff */ -//DECLARE_GLOBAL_DATA_PTR; - #define OM_STAT (0x1f << 1) /** @@ -344,15 +341,6 @@ void board_init_f(void) hlt(); } -/* Place Holders */ -void board_init_r(gd_t *id, ulong dest_addr) -{ - /* Function attribute is no-return */ - /* This Function never executes */ - while (1) - ; -} - //void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3) {} #if 0 |