diff options
author | Stefan Reinauer <reinauer@chromium.org> | 2013-02-14 16:56:05 -0800 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2013-02-15 02:43:09 +0100 |
commit | 8bc58da8ac7b2d91b7a6571e622876346df6f4cd (patch) | |
tree | a9c5b696764cd72b8da92b45393926af485568d0 /src/cpu | |
parent | 5dbf689b62367f5386441cdc35434f14b39ac17b (diff) |
ARMv7: straighten out reset code
We don't need three different implementations.
Change-Id: Ie7b5fa90794676ea38838454a33e8e9188428eb7
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/2406
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/samsung/exynos5-common/reset.c (renamed from src/cpu/samsung/exynos5-common/soc.c) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/samsung/exynos5-common/soc.c b/src/cpu/samsung/exynos5-common/reset.c index e73fd338ba..6cbc1d88e5 100644 --- a/src/cpu/samsung/exynos5-common/soc.c +++ b/src/cpu/samsung/exynos5-common/reset.c @@ -21,10 +21,10 @@ * MA 02111-1307 USA */ -#include <common.h> +#include <reset.h> #include <arch/io.h> -void reset_cpu(unsigned long addr) +void soft_reset(void) { writel(0x1, samsung_get_base_swreset()); } |