From 5307153236caaf2304e578c148e00a4b65cb8604 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Tue, 14 Feb 2012 19:59:21 +0000 Subject: Stop using builtin_run_command() Boards can select either the 'built-in' parser or the hush parser. We should not call builtin_run_command() if we are using the hush parser. We use run_command() instead, since it knows how to call the correct parser. Signed-off-by: Simon Glass Acked-by: Mike Frysinger --- board/esd/du440/du440.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'board/esd/du440') diff --git a/board/esd/du440/du440.c b/board/esd/du440/du440.c index 75fb20079e..1ada1bc984 100644 --- a/board/esd/du440/du440.c +++ b/board/esd/du440/du440.c @@ -831,7 +831,7 @@ int do_time(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) *d = '\0'; start = get_ticks(); - ret = builtin_run_command(cmd, 0); + ret = run_command(cmd, 0); end = get_ticks(); printf("ticks=%ld\n", (ulong)(end - start)); -- cgit v1.2.1