Commit e0306cab092c3f9f3526f4c72832561201d97e11

Authored by Mike Frysinger
Committed by Wolfgang Denk
1 parent 4b58266e95

examples: update do_reset prototype

One more place that was missed during the do_reset() unification.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>

Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff

examples/api/libgenwrap.c
... ... @@ -81,9 +81,10 @@
81 81 ub_udelay(usec);
82 82 }
83 83  
84   -void do_reset (void)
  84 +int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
85 85 {
86 86 ub_reset();
  87 + return 0;
87 88 }
88 89  
89 90 void *malloc (size_t len)