From b6d618295d76be1ba65b1c69ecc74cd4b05ef80d Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 26 May 2005 23:01:35 +0000 Subject: Gary has a better fix. --- drivers.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'drivers.c') diff --git a/drivers.c b/drivers.c index 304237ce..4d667d27 100644 --- a/drivers.c +++ b/drivers.c @@ -219,7 +219,8 @@ static struct gps_type_t tripmate = { * **************************************************************************/ -extern struct gps_type_t zodiac_binary, earthmate; +extern struct gps_type_t zodiac_binary; +static struct gps_type_t earthmate; /* * There is a good HOWTO at . @@ -239,7 +240,7 @@ static void earthmate_initializer(struct gps_device_t *session) if (zodiac_binary.initializer) zodiac_binary.initializer(session); } -/* static */ struct gps_type_t earthmate = { +static struct gps_type_t earthmate = { "Delorme EarthMate (pre-2003, Zodiac chipset)", /* full name of type */ "EARTHA", /* tells us to switch to Earthmate */ NULL, /* no probe */ -- cgit v1.2.1