summaryrefslogtreecommitdiffstats
path: root/commands/crc.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-09-24 12:31:08 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2007-09-24 12:31:08 +0200
commit3cbc5c5c12f8419f563efa33153fc87d7158efbd (patch)
tree5e6f674b85f6e73cba5be7a645c7df38482dad55 /commands/crc.c
parentb0615cc9096be1d2ed2813af3a0d850e1009b9d4 (diff)
downloadbarebox-3cbc5c5c12f8419f563efa33153fc87d7158efbd.tar.gz
barebox-3cbc5c5c12f8419f563efa33153fc87d7158efbd.tar.xz
remove u-boot command paramter flag
Diffstat (limited to 'commands/crc.c')
-rw-r--r--commands/crc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/crc.c b/commands/crc.c
index c45e193e0b..d36b5d363a 100644
--- a/commands/crc.c
+++ b/commands/crc.c
@@ -8,7 +8,7 @@
#include <malloc.h>
#include <linux/ctype.h>
-int do_crc (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
+int do_crc (cmd_tbl_t *cmdtp, int argc, char *argv[])
{
ulong start = 0, size = ~0, total = 0, now;
ulong crc = 0, vcrc = 0;