summaryrefslogtreecommitdiffstats
path: root/app/pll.c
diff options
context:
space:
mode:
Diffstat (limited to 'app/pll.c')
-rw-r--r--app/pll.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/app/pll.c b/app/pll.c
index 56e8e21..0c9ed80 100644
--- a/app/pll.c
+++ b/app/pll.c
@@ -19,10 +19,10 @@ int pll_valid = 0;
static int warming_up = WARM_UP;
-void pll_meh(void)
+void pll_meh (void)
{
- printf (" %"PRId64" %"PRId64" %" PRId64 "\r\n",
- pll_freq,offset,phase);
+ printf (" %"PRId64" %"PRId64" %" PRId64 "\r\n",
+ pll_freq, offset, phase);
}
@@ -96,7 +96,6 @@ void pll_dispatch (uint64_t edge)
f *= (double) pll_freq;
modify_pll_freq (edge, (int) f);
-
}
pll_last_update = edge;
@@ -114,7 +113,7 @@ void pll_set_offset (EPOCH epoch, uint64_t abs)
offset = epoch.s - abs;
pll_valid = 1;
-time_known=1;
+ time_known = 1;
}