summaryrefslogtreecommitdiff
path: root/driver_tsip.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2011-01-19 20:03:47 -0500
committerEric S. Raymond <esr@thyrsus.com>2011-01-19 20:03:47 -0500
commitc22430b526bf35912aba88dcb249264530cd5128 (patch)
tree89801f03d3b834f68a08d24789e84fcb4e2ff7c2 /driver_tsip.c
parent901d73928207e94b22e7edcf88df064590161eb6 (diff)
downloadgpsd-c22430b526bf35912aba88dcb249264530cd5128.tar.gz
Added a driver-type flags member to the driver method structure.
All regression tests pass.
Diffstat (limited to 'driver_tsip.c')
-rw-r--r--driver_tsip.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/driver_tsip.c b/driver_tsip.c
index 9874aca6..43eb1b2e 100644
--- a/driver_tsip.c
+++ b/driver_tsip.c
@@ -1161,7 +1161,8 @@ const struct gps_type_t tsip_binary =
{
.type_name = "Trimble TSIP", /* full name of type */
.packet_type = TSIP_PACKET, /* associated lexer packet type */
- .trigger = NULL, /* no trigger */
+ .flags = DRIVER_NOFLAGS, /* no flags set */
+ .trigger = NULL, /* no trigger */
.channels = TSIP_CHANNELS, /* consumer-grade GPS */
.probe_detect = tsip_detect, /* probe for 9600O81 device */
.get_packet = generic_get, /* use the generic packet getter */