From: Mike Frysinger Date: Sun, 19 Dec 2010 22:16:53 +0000 (-0500) Subject: examples: update do_reset prototype X-Git-Tag: v2011.03-rc1~53 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e0306cab092c3f9f3526f4c72832561201d97e11;p=platform%2Fkernel%2Fu-boot.git examples: update do_reset prototype One more place that was missed during the do_reset() unification. Signed-off-by: Mike Frysinger --- diff --git a/examples/api/libgenwrap.c b/examples/api/libgenwrap.c index 9733bbc..873cf34 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)