bssgp_vty: Remove dead code and compiler warning

gprs_bssgp_vty.c:48:34: warning: ‘gprs_bssgp_timer_strs’ defined but not used [-Wunused-const-variable=]
 static const struct value_string gprs_bssgp_timer_strs[] = {
                                  ^~~~~~~~~~~~~~~~~~~~~

Change-Id: Ia41ccb7b227c41996cdef51dc6779bfc5b5a8d48
This commit is contained in:
Harald Welte 2016-11-11 15:07:35 +01:00
parent 1554f80f5e
commit 684cf32243
1 changed files with 0 additions and 7 deletions

View File

@ -43,12 +43,6 @@
#include "common_vty.h"
/* FIXME: this should go to some common file as it is copied
* in vty_interface.c of the BSC */
static const struct value_string gprs_bssgp_timer_strs[] = {
{ 0, NULL }
};
static void log_set_bvc_filter(struct log_target *target,
struct bssgp_bvc_ctx *bctx)
{
@ -219,7 +213,6 @@ int bssgp_vty_init(void)
install_default(L_BSSGP_NODE);
install_element(L_BSSGP_NODE, &libgb_exit_cmd);
install_element(L_BSSGP_NODE, &libgb_end_cmd);
//install_element(L_BSSGP_NODE, &cfg_bssgp_timer_cmd);
return 0;
}