gsm_data: use feature list from libosmocore

In order to avoid code duplication the feature list (bit masks) and
the desciptive value strings as well as the function to set and get
the feature bits have been moved to libosmocore.

- use feature list functionality provided by libosmocore

Depends: libosmocore Change-Id Id0c35aef11aa49aa40abe7deef1f9dbd12210776
Change-Id: I3e80517539cc5d0e5d8189d434a5e3cc0fdea1a0
diff --git a/src/libbsc/bts_sysmobts.c b/src/libbsc/bts_sysmobts.c
index 2982074..91d1118 100644
--- a/src/libbsc/bts_sysmobts.c
+++ b/src/libbsc/bts_sysmobts.c
@@ -53,8 +53,8 @@
 				sizeof(model_sysmobts._features_data);
 	memset(model_sysmobts.features.data, 0, sizeof(model_sysmobts.features.data_len));
 
-	gsm_btsmodel_set_feature(&model_sysmobts, BTS_FEAT_GPRS);
-	gsm_btsmodel_set_feature(&model_sysmobts, BTS_FEAT_EGPRS);
+        osmo_bts_set_feature(&model_sysmobts.features, BTS_FEAT_GPRS);
+	osmo_bts_set_feature(&model_sysmobts.features, BTS_FEAT_EGPRS);
 
 	return gsm_bts_model_register(&model_sysmobts);
 }