summaryrefslogtreecommitdiff
path: root/drivers.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2013-10-30 23:11:40 -0400
committerEric S. Raymond <esr@thyrsus.com>2013-10-30 23:11:40 -0400
commit7094b0fbbbf49a2339108edd7dc0af52841834e7 (patch)
tree3c19d75601139b43e34fd7e9febead8557610908 /drivers.c
parent56e9094724cd76cba6a2036a399667bbddb7f109 (diff)
downloadgpsd-7094b0fbbbf49a2339108edd7dc0af52841834e7.tar.gz
Revert "Separate ntpd support from chrony support, step 1."
We'll have to sneak up on this change more slowly.
Diffstat (limited to 'drivers.c')
-rw-r--r--drivers.c102
1 files changed, 51 insertions, 51 deletions
diff --git a/drivers.c b/drivers.c
index 52d130bf..e55d8790 100644
--- a/drivers.c
+++ b/drivers.c
@@ -101,9 +101,9 @@ const struct gps_type_t unknown = {
#ifdef CONTROLSEND_ENABLE
.control_send = NULL, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
-#ifdef TIMESERVICE_ENABLE
- .time_offset = NULL, /* no method for NTP fudge factor */
-#endif /* ENABLE ENABLE */
+#ifdef NTPSHM_ENABLE
+ .ntp_offset = NULL, /* no method for NTP fudge factor */
+#endif /* NTPSHM_ ENABLE */
};
/* *INDENT-ON* */
@@ -265,9 +265,9 @@ const struct gps_type_t nmea = {
#ifdef CONTROLSEND_ENABLE
.control_send = nmea_write, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
-#ifdef TIMESERVICE_ENABLE
- .time_offset = NULL, /* no method for NTP fudge factor */
-#endif /* ENABLE ENABLE */
+#ifdef NTPSHM_ENABLE
+ .ntp_offset = NULL, /* no method for NTP fudge factor */
+#endif /* NTPSHM_ ENABLE */
};
/* *INDENT-ON* */
@@ -366,9 +366,9 @@ const struct gps_type_t garmin = {
#ifdef CONTROLSEND_ENABLE
.control_send = nmea_write, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
-#ifdef TIMESERVICE_ENABLE
- .time_offset = NULL, /* no method for NTP fudge factor */
-#endif /* ENABLE ENABLE */
+#ifdef NTPSHM_ENABLE
+ .ntp_offset = NULL, /* no method for NTP fudge factor */
+#endif /* NTPSHM_ ENABLE */
};
/* *INDENT-ON* */
#endif /* GARMIN_ENABLE && NMEA_ENABLE */
@@ -428,9 +428,9 @@ const struct gps_type_t ashtech = {
#ifdef CONTROLSEND_ENABLE
.control_send = nmea_write, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
-#ifdef TIMESERVICE_ENABLE
- .time_offset = NULL, /* no method for NTP fudge factor */
-#endif /* ENABLE ENABLE */
+#ifdef NTPSHM_ENABLE
+ .ntp_offset = NULL, /* no method for NTP fudge factor */
+#endif /* NTPSHM_ ENABLE */
};
/* *INDENT-ON* */
#endif /* ASHTECH_ENABLE */
@@ -479,9 +479,9 @@ const struct gps_type_t fv18 = {
#ifdef CONTROLSEND_ENABLE
.control_send = nmea_write, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
-#ifdef TIMESERVICE_ENABLE
- .time_offset = NULL, /* no method for NTP fudge factor */
-#endif /* ENABLE ENABLE */
+#ifdef NTPSHM_ENABLE
+ .ntp_offset = NULL, /* no method for NTP fudge factor */
+#endif /* NTPSHM_ ENABLE */
};
/* *INDENT-ON* */
#endif /* FV18_ENABLE */
@@ -533,9 +533,9 @@ const struct gps_type_t gpsclock = {
#ifdef CONTROLSEND_ENABLE
.control_send = nmea_write, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
-#ifdef TIMESERVICE_ENABLE
- .time_offset = NULL, /* no method for NTP fudge factor */
-#endif /* ENABLE ENABLE */
+#ifdef NTPSHM_ENABLE
+ .ntp_offset = NULL, /* no method for NTP fudge factor */
+#endif /* NTPSHM_ ENABLE */
};
/* *INDENT-ON* */
#endif /* GPSCLOCK_ENABLE */
@@ -588,9 +588,9 @@ static const struct gps_type_t tripmate = {
#ifdef CONTROLSEND_ENABLE
.control_send = nmea_write, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
-#ifdef TIMESERVICE_ENABLE
- .time_offset = NULL, /* no method for NTP fudge factor */
-#endif /* ENABLE ENABLE */
+#ifdef NTPSHM_ENABLE
+ .ntp_offset = NULL, /* no method for NTP fudge factor */
+#endif /* NTPSHM_ ENABLE */
};
/* *INDENT-ON* */
#endif /* TRIPMATE_ENABLE */
@@ -639,9 +639,9 @@ static const struct gps_type_t earthmate = {
#ifdef CONTROLSEND_ENABLE
.control_send = nmea_write, /* never actually used. */
#endif /* CONTROLSEND_ENABLE */
-#ifdef TIMESERVICE_ENABLE
- .time_offset = NULL, /* no method for NTP fudge factor */
-#endif /* ENABLE ENABLE */
+#ifdef NTPSHM_ENABLE
+ .ntp_offset = NULL, /* no method for NTP fudge factor */
+#endif /* NTPSHM_ ENABLE */
};
/*@ -redef @*/
/* *INDENT-ON* */
@@ -762,9 +762,9 @@ const struct gps_type_t trueNorth = {
#ifdef CONTROLSEND_ENABLE
.control_send = tnt_control_send, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
-#ifdef TIMESERVICE_ENABLE
- .time_offset = NULL,
-#endif /* ENABLE ENABLE */
+#ifdef NTPSHM_ENABLE
+ .ntp_offset = NULL,
+#endif /* NTPSHM_ ENABLE */
};
/* *INDENT-ON* */
#endif
@@ -840,9 +840,9 @@ static const struct gps_type_t oceanServer = {
#ifdef CONTROLSEND_ENABLE
.control_send = nmea_write, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
-#ifdef TIMESERVICE_ENABLE
- .time_offset = NULL,
-#endif /* ENABLE ENABLE */
+#ifdef NTPSHM_ENABLE
+ .ntp_offset = NULL,
+#endif /* NTPSHM_ ENABLE */
};
/* *INDENT-ON* */
#endif
@@ -907,9 +907,9 @@ static const struct gps_type_t fury = {
#ifdef CONTROLSEND_ENABLE
.control_send = nmea_write, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
-#ifdef TIMESERVICE_ENABLE
- .time_offset = NULL,
-#endif /* ENABLE ENABLE */
+#ifdef NTPSHM_ENABLE
+ .ntp_offset = NULL,
+#endif /* NTPSHM_ ENABLE */
};
/* *INDENT-ON* */
@@ -961,9 +961,9 @@ static const struct gps_type_t rtcm104v2 = {
#ifdef CONTROLSEND_ENABLE
.control_send = NULL, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
-#ifdef TIMESERVICE_ENABLE
- .time_offset = NULL,
-#endif /* ENABLE ENABLE */
+#ifdef NTPSHM_ENABLE
+ .ntp_offset = NULL,
+#endif /* NTPSHM_ ENABLE */
};
/* *INDENT-ON* */
#endif /* RTCM104V2_ENABLE */
@@ -1007,9 +1007,9 @@ static const struct gps_type_t rtcm104v3 = {
#ifdef CONTROLSEND_ENABLE
.control_send = NULL, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
-#ifdef TIMESERVICE_ENABLE
- .time_offset = NULL,
-#endif /* ENABLE ENABLE */
+#ifdef NTPSHM_ENABLE
+ .ntp_offset = NULL,
+#endif /* NTPSHM_ ENABLE */
};
/* *INDENT-ON* */
#endif /* RTCM104V3_ENABLE */
@@ -1042,9 +1042,9 @@ static const struct gps_type_t garmintxt = {
#ifdef CONTROLSEND_ENABLE
.control_send = NULL, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
-#ifdef TIMESERVICE_ENABLE
- .time_offset = NULL,
-#endif /* ENABLE ENABLE */
+#ifdef NTPSHM_ENABLE
+ .ntp_offset = NULL,
+#endif /* NTPSHM_ ENABLE */
};
/* *INDENT-ON* */
#endif /* GARMINTXT_ENABLE */
@@ -1130,9 +1130,9 @@ const struct gps_type_t mtk3301 = {
#ifdef CONTROLSEND_ENABLE
.control_send = nmea_write, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
-#ifdef TIMESERVICE_ENABLE
- .time_offset = NULL,
-#endif /* ENABLE ENABLE */
+#ifdef NTPSHM_ENABLE
+ .ntp_offset = NULL,
+#endif /* NTPSHM_ ENABLE */
};
/* *INDENT-ON* */
#endif /* MTK3301_ENABLE */
@@ -1368,9 +1368,9 @@ const struct gps_type_t aivdm = {
#ifdef CONTROLSEND_ENABLE
.control_send = NULL, /* no control sender */
#endif /* CONTROLSEND_ENABLE */
-#ifdef TIMESERVICE_ENABLE
- .time_offset = NULL, /* no NTP communication */
-#endif /* ENABLE ENABLE */
+#ifdef NTPSHM_ENABLE
+ .ntp_offset = NULL, /* no NTP communication */
+#endif /* NTPSHM_ ENABLE */
};
/* *INDENT-ON* */
#endif /* AIVDM_ENABLE */
@@ -1466,9 +1466,9 @@ const struct gps_type_t json_passthrough = {
#ifdef CONTROLSEND_ENABLE
.control_send = NULL, /* how to send control strings */
#endif /* CONTROLSEND_ENABLE */
-#ifdef TIMESERVICE_ENABLE
- .time_offset = NULL, /* no method for NTP fudge factor */
-#endif /* ENABLE ENABLE */
+#ifdef NTPSHM_ENABLE
+ .ntp_offset = NULL, /* no method for NTP fudge factor */
+#endif /* NTPSHM_ ENABLE */
};
/* *INDENT-ON* */