summaryrefslogtreecommitdiff
path: root/monitor_sirf.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2013-11-12 17:13:27 -0500
committerEric S. Raymond <esr@thyrsus.com>2013-11-12 17:13:27 -0500
commit25c55a4c7a4ed769ac10073fb65466f31305d305 (patch)
tree1b12403252e54d58dc2eb0dd68103bc803cba61a /monitor_sirf.c
parent8eb7514a020463ffda56654de516095141ca63d3 (diff)
downloadgpsd-25c55a4c7a4ed769ac10073fb65466f31305d305.tar.gz
Rename and rationalize driver table instances. No logic changes.
Diffstat (limited to 'monitor_sirf.c')
-rw-r--r--monitor_sirf.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/monitor_sirf.c b/monitor_sirf.c
index edf790b5..dc737300 100644
--- a/monitor_sirf.c
+++ b/monitor_sirf.c
@@ -18,7 +18,7 @@
#include "gpsmon.h"
#if defined(SIRF_ENABLE) && defined(BINARY_ENABLE)
-extern const struct gps_type_t sirf_binary;
+extern const struct gps_type_t driver_sirf;
static WINDOW *mid2win, *mid4win, *mid6win, *mid7win, *mid9win, *mid13win;
static WINDOW *mid19win, *mid27win;
@@ -584,14 +584,15 @@ static void sirf_update(void)
/*@ +nullpass -nullderef @*/
#ifdef PPS_ENABLE
- /* Not a CSD field, but there's no better place to put it */
+ /*@-compdef@*/
+ /*@-type@*/ /* splint is confused about struct timespec */
if (pps_thread_lastpps(&session, &drift) > 0) {
- /*@-type@*/ /* splint is confused about struct timespec */
double timedelta = timespec_diff_ns(drift.real, drift.clock) * 1e-9;
- /*@+type@*/
display(mid7win, 2, 39, "%.9f", timedelta); /* PPS offset */
- wnoutrefresh(mid7win);
+ (void)wnoutrefresh(mid7win);
}
+ /*@+type@*/
+ /*@+compdef@*/
#endif /* PPS_ENABLE */
}
@@ -687,7 +688,7 @@ const struct monitor_object_t sirf_mmt = {
#endif /* CONTROLSEND_ENABLE */
.wrap = sirf_wrap,
.min_y = 22,.min_x = 80,
- .driver = &sirf_binary,
+ .driver = &driver_sirf,
};
#endif /* defined(SIRF_ENABLE) && defined(BINARY_ENABLE) */