summaryrefslogtreecommitdiffstats
path: root/include/command.h
diff options
context:
space:
mode:
authorRichard Genoud <richard.genoud@gmail.com>2012-12-03 06:28:28 +0000
committerTom Rini <trini@ti.com>2013-02-04 09:14:02 -0500
commit34765e88532dfe0f8210baba9f9482de470d2202 (patch)
tree0cfee1c2441fe9f491eaaa377cd481936fc9a004 /include/command.h
parentb2f3e0ea3e469a759fd74832ce551e3384bc07c0 (diff)
downloadtalos-obmc-uboot-34765e88532dfe0f8210baba9f9482de470d2202.tar.gz
talos-obmc-uboot-34765e88532dfe0f8210baba9f9482de470d2202.zip
cmd_time: merge run_command_and_time_it with cmd_process
As far as every arch has a get_timer function, run_command_and_time_it code can now disappear. Signed-off-by: Richard Genoud <richard.genoud@gmail.com> Acked-By: Che-Liang Chiou <clchiou@chromium.org> [trini: s/ulong/unsigned long/ in command.h portion] Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'include/command.h')
-rw-r--r--include/command.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/command.h b/include/command.h
index 476e7cffc2..3785eb987f 100644
--- a/include/command.h
+++ b/include/command.h
@@ -139,10 +139,12 @@ enum command_ret_t {
* @param repeatable This function sets this to 0 if the command is not
* repeatable. If the command is repeatable, the value
* is left unchanged.
+ * @param ticks If ticks is not null, this function set it to the
+ * number of ticks the command took to complete.
* @return 0 if the command succeeded, 1 if it failed
*/
int cmd_process(int flag, int argc, char * const argv[],
- int *repeatable);
+ int *repeatable, unsigned long *ticks);
#endif /* __ASSEMBLY__ */
OpenPOWER on IntegriCloud