bssgp_bvc_fsm: Consistent naming

bssgp_bvc_get_features_* are fsm "methods" and the name should indicate
that just lika all other function names in bssgp_bvc_fsm.h

Change-Id: I30fbbe36cdabf9635eaf4dfb1e93c8ce0f667b39
diff --git a/src/gb/bssgp_bvc_fsm.c b/src/gb/bssgp_bvc_fsm.c
index a035938..8d284d1 100644
--- a/src/gb/bssgp_bvc_fsm.c
+++ b/src/gb/bssgp_bvc_fsm.c
@@ -794,7 +794,7 @@
 }
 
 /*! Return the advertised features / extended features. */
-uint32_t bssgp_bvc_get_features_advertised(struct osmo_fsm_inst *fi)
+uint32_t bssgp_bvc_fsm_get_features_advertised(struct osmo_fsm_inst *fi)
 {
 	struct bvc_fsm_priv *bfp = fi->priv;
 
@@ -803,7 +803,7 @@
 }
 
 /*! Return the received features / extended features. */
-uint32_t bssgp_bvc_get_features_received(struct osmo_fsm_inst *fi)
+uint32_t bssgp_bvc_fsm_get_features_received(struct osmo_fsm_inst *fi)
 {
 	struct bvc_fsm_priv *bfp = fi->priv;
 
@@ -812,7 +812,7 @@
 }
 
 /*! Return the negotiated features / extended features. */
-uint32_t bssgp_bvc_get_features_negotiated(struct osmo_fsm_inst *fi)
+uint32_t bssgp_bvc_fsm_get_features_negotiated(struct osmo_fsm_inst *fi)
 {
 	struct bvc_fsm_priv *bfp = fi->priv;