aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-sysmo/femtobts.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-05-12 08:38:00 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-05-12 08:49:35 +0200
commit7fe0838588f1a2bb4df7c078e00f8b7b67a9abed (patch)
tree93a71c2063327eb89b861bac2071a038df080f2f /src/osmo-bts-sysmo/femtobts.c
parent3af5426d7188e810d7ee2aacb2d7af22e1054665 (diff)
sysmobts: Save the clock-source to the config file
Make the clock names lower case to match with the vty command.
Diffstat (limited to 'src/osmo-bts-sysmo/femtobts.c')
-rw-r--r--src/osmo-bts-sysmo/femtobts.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osmo-bts-sysmo/femtobts.c b/src/osmo-bts-sysmo/femtobts.c
index a367c32a..3f08ef57 100644
--- a/src/osmo-bts-sysmo/femtobts.c
+++ b/src/osmo-bts-sysmo/femtobts.c
@@ -240,10 +240,10 @@ const struct value_string femtobts_tch_pl_names[] = {
const struct value_string femtobts_clksrc_names[] = {
{ SF_CLKSRC_NONE, "None" },
- { SF_CLKSRC_OCXO, "OCXO" },
- { SF_CLKSRC_TCXO, "TCXO" },
- { SF_CLKSRC_EXT, "EXT" },
- { SF_CLKSRC_GPS, "GPS" },
+ { SF_CLKSRC_OCXO, "ocxo" },
+ { SF_CLKSRC_TCXO, "tcxo" },
+ { SF_CLKSRC_EXT, "ext" },
+ { SF_CLKSRC_GPS, "gps" },
{ SF_CLKSRC_TRX, "TRX" },
{ SF_CLKSRC_RX, "RX" },
{ 0, NULL }