From 72001addcb2e471fdfd965f66941b2fa308ab121 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 18 Nov 2013 20:37:27 +0100 Subject: [PATCH] videomixer: add PLL dump command --- software/videomixer/ci.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/software/videomixer/ci.c b/software/videomixer/ci.c index 57ea2fac..06fdf98b 100644 --- a/software/videomixer/ci.c +++ b/software/videomixer/ci.c @@ -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; + } } } -- 2.30.2