Commit e8c2a21e authored by Tomasz Wlostowski's avatar Tomasz Wlostowski

shell/cmd_pll.c: added PLL STAT command for dumping PLL state

parent f47ac11c
......@@ -26,6 +26,8 @@ static int cmd_pll(const char *args[])
if (!args[1])
return -EINVAL;
mprintf("%d\n", spll_check_lock(atoi(args[1])));
} else if (!strcasecmp(args[0], "stat")) {
spll_show_stats();
} else if (!strcasecmp(args[0], "sps")) {
if (!args[2])
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