aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2018-01-30 17:53:02 +0100
committerHarald Welte <laforge@gnumonks.org>2018-02-03 15:05:29 +0000
commitc9ce6f916e92bb2901f39581072db7fe9ccf9ef8 (patch)
treecb21872b1ad4d07a11ac4cc8e052d6d3feaf5dfb /src
parent5441e1f2f0cbaf69a6b2aa031db9088bdd9d9199 (diff)
vty: drop unused function
Diffstat (limited to 'src')
-rw-r--r--src/pcu_vty.c2
-rw-r--r--src/pcu_vty_functions.cpp5
-rw-r--r--src/pcu_vty_functions.h1
3 files changed, 1 insertions, 7 deletions
diff --git a/src/pcu_vty.c b/src/pcu_vty.c
index dff331f3..5c3f625f 100644
--- a/src/pcu_vty.c
+++ b/src/pcu_vty.c
@@ -265,7 +265,7 @@ static int config_write_pcu(struct vty *vty)
}
}
- return pcu_vty_config_write_pcu_ext(vty);
+ return CMD_SUCCESS;
}
/* per-BTS configuration */
diff --git a/src/pcu_vty_functions.cpp b/src/pcu_vty_functions.cpp
index bb341f8a..41165f3c 100644
--- a/src/pcu_vty_functions.cpp
+++ b/src/pcu_vty_functions.cpp
@@ -34,11 +34,6 @@ extern "C" {
#include <osmocom/vty/misc.h>
}
-int pcu_vty_config_write_pcu_ext(struct vty *vty)
-{
- return CMD_SUCCESS;
-}
-
static void tbf_print_vty_info(struct vty *vty, gprs_rlcmac_tbf *tbf)
{
gprs_rlcmac_ul_tbf *ul_tbf = as_ul_tbf(tbf);
diff --git a/src/pcu_vty_functions.h b/src/pcu_vty_functions.h
index 35acf64c..470df0eb 100644
--- a/src/pcu_vty_functions.h
+++ b/src/pcu_vty_functions.h
@@ -27,7 +27,6 @@ extern "C" {
struct vty;
struct gprs_rlcmac_bts;
-int pcu_vty_config_write_pcu_ext(struct vty *vty);
int pcu_vty_show_tbf_all(struct vty *vty, struct gprs_rlcmac_bts *bts_data);
int pcu_vty_show_ms_all(struct vty *vty, struct gprs_rlcmac_bts *bts_data);
int pcu_vty_show_ms_by_tlli(struct vty *vty, struct gprs_rlcmac_bts *bts_data,