From 4713010adf5beda87410d637ebfc58db0db9a9db Mon Sep 17 00:00:00 2001 From: Wolfgang Denk Date: Sun, 6 Dec 2009 01:21:28 +0100 Subject: trab: fix warning: implicit declaration of function 'disable_vfd' Signed-off-by: Wolfgang Denk --- cpu/arm920t/s3c24x0/timer.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cpu') diff --git a/cpu/arm920t/s3c24x0/timer.c b/cpu/arm920t/s3c24x0/timer.c index 20cedd463..a27f0e273 100644 --- a/cpu/arm920t/s3c24x0/timer.c +++ b/cpu/arm920t/s3c24x0/timer.c @@ -205,6 +205,8 @@ void reset_cpu(ulong ignored) struct s3c24x0_watchdog *watchdog; #ifdef CONFIG_TRAB + extern void disable_vfd(void); + disable_vfd(); #endif -- cgit v1.2.3 From a93c92cddaedd5f0720e0da15c6664f7a688b582 Mon Sep 17 00:00:00 2001 From: "Robert P. J. Day" Date: Tue, 17 Nov 2009 07:30:23 -0500 Subject: help: Correct syntax of nandecc help output. "nandecc" help output should not reproduce the command name, nor have a trailing newline. Signed-off-by: Robert P. J. Day --- cpu/arm_cortexa8/omap3/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpu') diff --git a/cpu/arm_cortexa8/omap3/board.c b/cpu/arm_cortexa8/omap3/board.c index dd2c94073..2aa69b383 100644 --- a/cpu/arm_cortexa8/omap3/board.c +++ b/cpu/arm_cortexa8/omap3/board.c @@ -328,7 +328,7 @@ usage: U_BOOT_CMD( nandecc, 2, 1, do_switch_ecc, - "nandecc - switch OMAP3 NAND ECC calculation algorithm\n", + "switch OMAP3 NAND ECC calculation algorithm", "[hw/sw] - Switch between NAND hardware (hw) or software (sw) ecc algorithm" ); -- cgit v1.2.3