summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include/osmocom/bb
diff options
context:
space:
mode:
authorDario Lombardo2011-02-10 09:56:33 +0100
committerHarald Welte2011-02-16 15:15:07 +0100
commit26ff2ee8802d7c8e8980d7c4cbfcd9053c6f3091 (patch)
tree37181f2f8d794bc94c97a6cfdaf4c7d68f9e150a /src/host/layer23/include/osmocom/bb
parenttarget/fw: correct IO_CNTL_REG name and small cosmetic fixes (diff)
downloadosmocom-26ff2ee8802d7c8e8980d7c4cbfcd9053c6f3091.tar.gz
osmocom-26ff2ee8802d7c8e8980d7c4cbfcd9053c6f3091.tar.xz
osmocom-26ff2ee8802d7c8e8980d7c4cbfcd9053c6f3091.zip
Renamed gps_* functions to osmo_gps_* functions to avoid overlap with libgps functions.
Diffstat (limited to 'src/host/layer23/include/osmocom/bb')
-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 e45cbc5..467cee5 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);