summaryrefslogtreecommitdiff
path: root/drivers.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2013-10-15 06:37:22 -0400
committerEric S. Raymond <esr@thyrsus.com>2013-10-15 06:37:22 -0400
commitcfda9c328f418ef1bdd87e71ccd8e465475bf2ef (patch)
tree356333cbee4a5e5c66b88e805177f97b17f016ea /drivers.c
parentc79e69c59b1180836ae818b513faa800bfd2ef81 (diff)
downloadgpsd-cfda9c328f418ef1bdd87e71ccd8e465475bf2ef.tar.gz
The old Delorme Earthmate control_send method is never used...
...but needs to be there for our consistency checks.
Diffstat (limited to 'drivers.c')
-rw-r--r--drivers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers.c b/drivers.c
index c2d8df35..fceff6a3 100644
--- a/drivers.c
+++ b/drivers.c
@@ -627,7 +627,7 @@ static const struct gps_type_t earthmate = {
.channels = 12, /* not used by NMEA parser */
.probe_detect = NULL, /* no probe */
.get_packet = generic_get, /* how to get a packet */
- .parse_packet = generic_parse_input, /* how to interpret a packet */
+ .parse_packet = generic_parse_input, /* how to interpret a packet */
.rtcm_writer = NULL, /* don't send RTCM data */
.event_hook = earthmate_event_hook, /* lifetime event handler */
#ifdef RECONFIGURE_ENABLE
@@ -637,7 +637,7 @@ static const struct gps_type_t earthmate = {
.min_cycle = 1, /* no rate switch */
#endif /* RECONFIGURE_ENABLE */
#ifdef CONTROLSEND_ENABLE
- .control_send = nmea_write, /* how to send control strings */
+ .control_send = nmea_write, /* never actually used. */
#endif /* CONTROLSEND_ENABLE */
#ifdef NTPSHM_ENABLE
.ntp_offset = NULL, /* no method for NTP fudge factor */