diff options
author | Peter Tyser <ptyser@xes-inc.com> | 2010-12-03 10:28:47 -0600 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-12-17 20:26:19 +0100 |
commit | c22a711d249b2b9ee39fe11bcee15ee4dbe3bf09 (patch) | |
tree | 17ae77b8593127b54cd3762cf80a2f11ef9e4154 /arch/powerpc/cpu/mpc86xx | |
parent | ee0270dff748213bd009fad566c913110fbd89f9 (diff) | |
download | u-boot-imx-c22a711d249b2b9ee39fe11bcee15ee4dbe3bf09.zip u-boot-imx-c22a711d249b2b9ee39fe11bcee15ee4dbe3bf09.tar.gz u-boot-imx-c22a711d249b2b9ee39fe11bcee15ee4dbe3bf09.tar.bz2 |
74xx_7xx/mpc86xx/ppmc7xx: Fix do_reset() declaration
The following commit:
commit 882b7d726febe65579d6502c271412ecb05821d7
Author: Mike Frysinger <vapier@gentoo.org>
Date: Wed Oct 20 03:41:17 2010 -0400
do_reset: unify duplicate prototypes
missed the 74xx_7xx and mpc86xx arches and the ppmc7xx board do_reset()
functions which resulted in build errors such as:
cpu.c:128: error: conflicting types for 'do_reset'
include/command.h:102: error: previous declaration of 'do_reset' was here
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'arch/powerpc/cpu/mpc86xx')
-rw-r--r-- | arch/powerpc/cpu/mpc86xx/cpu.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/powerpc/cpu/mpc86xx/cpu.c b/arch/powerpc/cpu/mpc86xx/cpu.c index 4e90fd2..ffcc8e6 100644 --- a/arch/powerpc/cpu/mpc86xx/cpu.c +++ b/arch/powerpc/cpu/mpc86xx/cpu.c @@ -123,8 +123,7 @@ checkcpu(void) } -void -do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) +int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) { volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; volatile ccsr_gur_t *gur = &immap->im_gur; @@ -137,6 +136,8 @@ do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) while (1) ; + + return 1; } |