summaryrefslogtreecommitdiff
path: root/drivers.c
diff options
context:
space:
mode:
authorChristian Gagneraud <chgans@gna.org>2013-11-22 10:57:27 +1300
committerEric S. Raymond <esr@thyrsus.com>2013-11-21 18:38:21 -0500
commit32db0e4eb412187c6ca358baebc55c12307556f6 (patch)
treeeed35ffdec341aa63a56128d39fb4ba409a27241 /drivers.c
parent24d1b1c6eb08d96cd36724d335f2c74ee1a4b2a2 (diff)
downloadgpsd-32db0e4eb412187c6ca358baebc55c12307556f6.tar.gz
drivers.c: move extern declaration of driver_nmea200 with other extern declarations
Signed-off-by: Christian Gagneraud <chgans@gna.org>
Diffstat (limited to 'drivers.c')
-rw-r--r--drivers.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers.c b/drivers.c
index ded0dcd1..1e809e5e 100644
--- a/drivers.c
+++ b/drivers.c
@@ -15,8 +15,6 @@
#include "gpsd.h"
#include "bits.h" /* for getbeu16(), to extract big-endian words */
-extern const struct gps_type_t driver_nmea2000;
-
ssize_t generic_get(struct gps_device_t *session)
{
return packet_get(session->gpsdata.gps_fd, &session->packet);
@@ -1497,6 +1495,7 @@ extern const struct gps_type_t driver_garmin_usb_binary;
extern const struct gps_type_t driver_geostar;
extern const struct gps_type_t driver_italk;
extern const struct gps_type_t driver_navcom;
+extern const struct gps_type_t driver_nmea2000;
extern const struct gps_type_t driver_oncore;
extern const struct gps_type_t driver_sirf;
extern const struct gps_type_t driver_superstar2;