From: TsiChung Liew Date: Tue, 30 Jun 2009 14:30:19 +0000 (+0000) Subject: Command for accessing serial flash update X-Git-Tag: v2009.08-rc2~29^2~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6e8d58d36691520f8da74cd948661d28d5a5dc66;p=u-boot Command for accessing serial flash update Change strtoul number base of argv 3 from 0 to 16 Signed-off-by: TsiChung Liew --- diff --git a/common/cmd_sf.c b/common/cmd_sf.c index 2d463a8c97..d571f60c04 100644 --- a/common/cmd_sf.c +++ b/common/cmd_sf.c @@ -48,7 +48,7 @@ static int do_spi_flash_probe(int argc, char *argv[]) goto usage; } if (argc >= 4) { - mode = simple_strtoul(argv[3], &endp, 0); + mode = simple_strtoul(argv[3], &endp, 16); if (*argv[3] == 0 || *endp != 0) goto usage; }