diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2010-12-19 17:16:53 -0500 |
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-01-09 17:53:45 +0100 |
| commit | e0306cab092c3f9f3526f4c72832561201d97e11 (patch) | |
| tree | 3cd0917d53b1259d8223e13d7f9a41f64bc94e8d /examples | |
| parent | 4b58266e952aaba4c1184c18eb9de5d82afe85cd (diff) | |
| download | olio-uboot-2014.01-e0306cab092c3f9f3526f4c72832561201d97e11.tar.xz olio-uboot-2014.01-e0306cab092c3f9f3526f4c72832561201d97e11.zip | |
examples: update do_reset prototype
One more place that was missed during the do_reset() unification.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/api/libgenwrap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/api/libgenwrap.c b/examples/api/libgenwrap.c index 9733bbc52..873cf343e 100644 --- a/examples/api/libgenwrap.c +++ b/examples/api/libgenwrap.c @@ -81,9 +81,10 @@ void __udelay(unsigned long usec) ub_udelay(usec); } -void do_reset (void) +int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) { ub_reset(); + return 0; } void *malloc (size_t len) |