summaryrefslogtreecommitdiff
path: root/drivers.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2013-10-12 07:13:13 -0400
committerEric S. Raymond <esr@thyrsus.com>2013-10-12 07:13:13 -0400
commit7d798516307ffba305d68f93c29d2549d44dc314 (patch)
tree943a08f300e9c88b5c939770de9cd310c0e2691b /drivers.c
parent6d9656417a5ae7db6ce4d27486f297758dc407ca (diff)
downloadgpsd-7d798516307ffba305d68f93c29d2549d44dc314.tar.gz
Remove some driver methods that should not have been included.
Diffstat (limited to 'drivers.c')
-rw-r--r--drivers.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers.c b/drivers.c
index 373c1b55..a33afd2e 100644
--- a/drivers.c
+++ b/drivers.c
@@ -964,7 +964,7 @@ static const struct gps_type_t rtcm104v2 = {
.min_cycle = 1, /* not relevant, no rate switch */
#endif /* RECONFIGURE_ENABLE */
#ifdef CONTROLSEND_ENABLE
- .control_send = nmea_write, /* how to send control strings */
+ .control_send = NULL, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
#ifdef NTPSHM_ENABLE
.ntp_offset = NULL,
@@ -1010,7 +1010,7 @@ static const struct gps_type_t rtcm104v3 = {
.min_cycle = 1, /* not relevant, no rate switch */
#endif /* RECONFIGURE_ENABLE */
#ifdef CONTROLSEND_ENABLE
- .control_send = nmea_write, /* how to send control strings */
+ .control_send = NULL, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
#ifdef NTPSHM_ENABLE
.ntp_offset = NULL,
@@ -1045,7 +1045,7 @@ static const struct gps_type_t garmintxt = {
.min_cycle = 1, /* not relevant, no rate switch */
#endif /* RECONFIGURE_ENABLE */
#ifdef CONTROLSEND_ENABLE
- .control_send = nmea_write, /* how to send control strings */
+ .control_send = NULL, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
#ifdef NTPSHM_ENABLE
.ntp_offset = NULL,