Drop use of deprectated vty callback is_config_node

While compiling:
vty.c:169:3: warning: 'is_config_node' is deprecated: Implicit parent
node tracking has replaced the use of this callback. This callback is
no longer called, ever, and can be left NULL. [-Wdeprecated-declarations]
        .is_config_node = bts_vty_is_config_node,
         ^

Change-Id: I54c5aa5911611b181f80e76556b150f25dd5b60c
This commit is contained in:
Pau Espin 2023-10-03 14:17:31 +02:00 committed by pespin
parent 955b7dc637
commit 586e897eea
5 changed files with 0 additions and 88 deletions

View File

@ -21,7 +21,6 @@ extern struct cmd_element cfg_bts_no_auto_band_cmd;
struct phy_instance *vty_get_phy_instance(struct vty *vty, int phy_nr, int inst_nr);
int bts_vty_go_parent(struct vty *vty);
int bts_vty_is_config_node(struct vty *vty, int node);
int bts_vty_init(void *ctx);

View File

@ -140,20 +140,6 @@ int bts_vty_go_parent(struct vty *vty)
return vty->node;
}
int bts_vty_is_config_node(struct vty *vty, int node)
{
switch (node) {
case TRX_NODE:
case BTS_NODE:
case PHY_NODE:
case PHY_INST_NODE:
case OSMUX_NODE:
return 1;
default:
return 0;
}
}
static const char osmobts_copyright[] =
"Copyright (C) 2010-2011 by Harald Welte, Andreas Eversberg and On-Waves\r\n"
"Copyright (C) 2011-2022 by sysmocom - s.f.m.c. GmbH\r\n"
@ -166,7 +152,6 @@ struct vty_app_info bts_vty_info = {
.version = PACKAGE_VERSION,
.copyright = osmobts_copyright,
.go_parent_cb = bts_vty_go_parent,
.is_config_node = bts_vty_is_config_node,
.usr_attr_desc = {
[BTS_VTY_ATTR_NEW_LCHAN] = \
"This command applies for newly created lchans",

View File

@ -89,39 +89,10 @@ static int go_to_parent(struct vty *vty)
return vty->node;
}
static int is_config_node(struct vty *vty, int node)
{
switch (node) {
case MGR_NODE:
case ACT_NORM_NODE:
case ACT_WARN_NODE:
case ACT_CRIT_NODE:
case LIMIT_SUPPLY_TEMP_NODE:
case LIMIT_SOC_NODE:
case LIMIT_FPGA_NODE:
case LIMIT_RMSDET_NODE:
case LIMIT_OCXO_NODE:
case LIMIT_TX0_TEMP_NODE:
case LIMIT_TX1_TEMP_NODE:
case LIMIT_PA0_TEMP_NODE:
case LIMIT_PA1_TEMP_NODE:
case LIMIT_SUPPLY_VOLT_NODE:
case LIMIT_TX0_VSWR_NODE:
case LIMIT_TX1_VSWR_NODE:
case LIMIT_SUPPLY_PWR_NODE:
case LIMIT_PA0_PWR_NODE:
case LIMIT_PA1_PWR_NODE:
return 1;
default:
return 0;
}
}
static struct vty_app_info vty_info = {
.name = "lc15bts-mgr",
.version = PACKAGE_VERSION,
.go_parent_cb = go_to_parent,
.is_config_node = is_config_node,
.copyright = copyright,
};

View File

@ -86,35 +86,10 @@ static int go_to_parent(struct vty *vty)
return vty->node;
}
static int is_config_node(struct vty *vty, int node)
{
switch (node) {
case MGR_NODE:
case ACT_NORM_NODE:
case ACT_WARN_NODE:
case ACT_CRIT_NODE:
case LIMIT_SUPPLY_TEMP_NODE:
case LIMIT_SOC_NODE:
case LIMIT_FPGA_NODE:
case LIMIT_RMSDET_NODE:
case LIMIT_OCXO_NODE:
case LIMIT_TX_TEMP_NODE:
case LIMIT_PA_TEMP_NODE:
case LIMIT_SUPPLY_VOLT_NODE:
case LIMIT_VSWR_NODE:
case LIMIT_SUPPLY_PWR_NODE:
case LIMIT_PA_PWR_NODE:
return 1;
default:
return 0;
}
}
static struct vty_app_info vty_info = {
.name = "oc2gbts-mgr",
.version = PACKAGE_VERSION,
.go_parent_cb = go_to_parent,
.is_config_node = is_config_node,
.copyright = copyright,
};

View File

@ -69,28 +69,10 @@ static int go_to_parent(struct vty *vty)
return vty->node;
}
static int is_config_node(struct vty *vty, int node)
{
switch (node) {
case MGR_NODE:
case ACT_NORM_NODE:
case ACT_WARN_NODE:
case ACT_CRIT_NODE:
case LIMIT_RF_NODE:
case LIMIT_DIGITAL_NODE:
case LIMIT_BOARD_NODE:
case LIMIT_PA_NODE:
return 1;
default:
return 0;
}
}
static struct vty_app_info vty_info = {
.name = "sysmobts-mgr",
.version = PACKAGE_VERSION,
.go_parent_cb = go_to_parent,
.is_config_node = is_config_node,
.copyright = copyright,
};