summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2009-12-17 13:36:43 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2009-12-17 13:36:43 +0100
commitabb8c0f1d7fe80af890f4df4dc270663c109a046 (patch)
treefebd52445ad32b1095a2d9797efc13231390bf2a /include
parent44738ee7ae7b50bcdb2b498aed5d4aab6fba5661 (diff)
downloadbarebox-abb8c0f1d7fe80af890f4df4dc270663c109a046.tar.gz
barebox-abb8c0f1d7fe80af890f4df4dc270663c109a046.tar.xz
fix arch_execute prototype
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h
index c38257177e..0c49d95058 100644
--- a/include/common.h
+++ b/include/common.h
@@ -133,7 +133,7 @@ unsigned long strtoul_suffix(const char *str, char **endp, int base);
void start_barebox(void);
void shutdown_barebox(void);
-int arch_execute(unsigned long address, int argc, char *argv[]);
+int arch_execute(void *, int argc, char *argv[]);
int run_shell(void);