U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] cmd_sandbox.c: Update for do_(load|save) not taking a number base
@ 2013-10-10 14:46 Tom Rini
  2013-10-15  0:21 ` Tom Rini
  0 siblings, 1 reply; 2+ messages in thread
From: Tom Rini @ 2013-10-10 14:46 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Tom Rini <trini@ti.com>
---
 common/cmd_sandbox.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/cmd_sandbox.c b/common/cmd_sandbox.c
index 75eb23a..8d59364 100644
--- a/common/cmd_sandbox.c
+++ b/common/cmd_sandbox.c
@@ -10,7 +10,7 @@
 static int do_sandbox_load(cmd_tbl_t *cmdtp, int flag, int argc,
 			   char * const argv[])
 {
-	return do_load(cmdtp, flag, argc, argv, FS_TYPE_SANDBOX, 16);
+	return do_load(cmdtp, flag, argc, argv, FS_TYPE_SANDBOX);
 }
 
 static int do_sandbox_ls(cmd_tbl_t *cmdtp, int flag, int argc,
@@ -22,7 +22,7 @@ static int do_sandbox_ls(cmd_tbl_t *cmdtp, int flag, int argc,
 static int do_sandbox_save(cmd_tbl_t *cmdtp, int flag, int argc,
 			   char * const argv[])
 {
-	return do_save(cmdtp, flag, argc, argv, FS_TYPE_SANDBOX, 16);
+	return do_save(cmdtp, flag, argc, argv, FS_TYPE_SANDBOX);
 }
 
 static cmd_tbl_t cmd_sandbox_sub[] = {
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-10-15  0:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-10 14:46 [U-Boot] [PATCH] cmd_sandbox.c: Update for do_(load|save) not taking a number base Tom Rini
2013-10-15  0:21 ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox