videomixer: add PLL dump command

This commit is contained in:
Sebastien Bourdeauducq 2013-11-18 20:37:27 +01:00
parent 6fc03946be
commit 72001addcb
1 changed files with 5 additions and 1 deletions

View File

@ -6,6 +6,7 @@
#include "dvisampler0.h"
#include "dvisampler1.h"
#include "processor.h"
#include "pll.h"
#include "ci.h"
static void print_mem_bandwidth(void)
@ -71,6 +72,9 @@ void ci_service(void)
case 'm':
print_mem_bandwidth();
break;
case 'p':
pll_dump();
break;
}
}
}