summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include/osmocom/bb/common
diff options
context:
space:
mode:
authorDario Lombardo <dario.lombardo@libero.it>2011-02-10 09:56:33 +0100
committerHarald Welte <laforge@gnumonks.org>2011-02-16 15:15:07 +0100
commit26ff2ee8802d7c8e8980d7c4cbfcd9053c6f3091 (patch)
tree37181f2f8d794bc94c97a6cfdaf4c7d68f9e150a /src/host/layer23/include/osmocom/bb/common
parentdf566b6e4ae39c0d53d9612e6a893aaa45e5c45b (diff)
Renamed gps_* functions to osmo_gps_* functions to avoid overlap with libgps functions.
Diffstat (limited to 'src/host/layer23/include/osmocom/bb/common')
-rw-r--r--src/host/layer23/include/osmocom/bb/common/gps.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/host/layer23/include/osmocom/bb/common/gps.h b/src/host/layer23/include/osmocom/bb/common/gps.h
index e45cbc5d..467cee52 100644
--- a/src/host/layer23/include/osmocom/bb/common/gps.h
+++ b/src/host/layer23/include/osmocom/bb/common/gps.h
@@ -19,7 +19,7 @@
*
*/
-struct gps {
+struct osmo_gps {
/* GPS device */
uint8_t enable;
char device[32];
@@ -31,10 +31,10 @@ struct gps {
double latitude, longitude;
};
-extern struct gps gps;
+extern struct osmo_gps gps;
-int gps_open(void);
-void gps_close(void);
-void gps_init(void);
+int osmo_gps_open(void);
+void osmo_gps_close(void);
+void osmo_gps_init(void);