Commit 120770b7 authored by Alessandro Rubini's avatar Alessandro Rubini

trivial: shell/cmd_pll.c: use mprintf not printf

Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
parent b9a1c081
......@@ -34,7 +34,7 @@ int cmd_pll(const char *args[])
if (!args[1])
return -EINVAL;
spll_get_phase_shift(atoi(args[1]), &cur, &tgt);
printf("%d %d\n", cur, tgt);
mprintf("%d %d\n", cur, tgt);
} else if (!strcasecmp(args[0], "start")) {
if (!args[1])
return -EINVAL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment