[U-Boot] [PATCH 1/5] sh: Fix warning about uninitialized value of ramdisk_flags

Nobuhiro Iwamatsu iwamatsu at nigauri.org
Tue Oct 19 19:40:07 CEST 2010


Signed-off-by: Nobuhiro Iwamatsu <iwamatsu at nigauri.org>
---
 arch/sh/lib/bootm.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/sh/lib/bootm.c b/arch/sh/lib/bootm.c
index 019e8ec..f38d0b0 100644
--- a/arch/sh/lib/bootm.c
+++ b/arch/sh/lib/bootm.c
@@ -103,7 +103,7 @@ int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *ima
 	sh_check_cmd_arg(bootargs, CMD_ARG_RD_DOLOAD, 10);
 	/* Initrd */
 	if (images->rd_start || images->rd_end) {
-		unsigned long ramdisk_flags;
+		unsigned long ramdisk_flags = 0;
 		int val = sh_check_cmd_arg(bootargs, CMD_ARG_RD_PROMPT, 10);
 		if (val == 1)
 				ramdisk_flags |= RD_PROMPT;
-- 
1.7.1



More information about the U-Boot mailing list