summaryrefslogtreecommitdiff
path: root/driver_proto.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2006-10-30 11:36:06 +0000
committerEric S. Raymond <esr@thyrsus.com>2006-10-30 11:36:06 +0000
commite88d740ff5fecb3a6cad327b48dd1b85c5cf1f63 (patch)
tree4e4a2f24844417ba81d8419736f8aea8c6c35523 /driver_proto.c
parentf6519ca132b92c29874b40079ca1f5d07ecd0676 (diff)
downloadgpsd-e88d740ff5fecb3a6cad327b48dd1b85c5cf1f63.tar.gz
Rename some methods for clarity.
Diffstat (limited to 'driver_proto.c')
-rw-r--r--driver_proto.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/driver_proto.c b/driver_proto.c
index d90673d3..cfcc1d80 100644
--- a/driver_proto.c
+++ b/driver_proto.c
@@ -122,9 +122,9 @@ struct gps_type_t proto_binary =
.typename = "Prototype driver", /* full name of type */
.trigger = NULL, /* recognize the type */
.channels = 12, /* used for dumping binary packets */
- .probe = NULL, /* no probe */
- .wakeup = NULL, /* no wakeup to be done before hunt */
- .initializer = proto_initializer,/* initialize the device */
+ .probe_detect = NULL, /* no probe */
+ .probe_wakeup = NULL, /* no wakeup to be done before hunt */
+ .probe_subtype = proto_initializer,/* initialize the device */
.configurator = proto_configurator,/* configure the proper sentences */
.get_packet = packet_get, /* use generic packet getter */
.parse_packet = proto_parse_input,/* parse message packets */