Drop use of deprecated vty is_config_node() cb

This callback was drepecated and is not ever called since
libosmocore.git 70ce871532ab21955e0955d7e230eae65438f047 (release 1.3.0).

See also libosmocore.git d31de237582f6fe3315d61bb9a488d4cda92654e.

Change-Id: I1bbaa455c018ba9c0943ac3cf1ae5511ebb4b723
This commit is contained in:
Pau Espin Pedrol
2025-03-04 18:05:35 +01:00
parent 0d155a130f
commit a0e1b20939

View File

@@ -781,17 +781,6 @@ DEFUN(show_trx, show_trx_cmd,
return CMD_SUCCESS; return CMD_SUCCESS;
} }
static int trx_vty_is_config_node(struct vty *vty, int node)
{
switch (node) {
case TRX_NODE:
case CHAN_NODE:
return 1;
default:
return 0;
}
}
static int trx_vty_go_parent(struct vty *vty) static int trx_vty_go_parent(struct vty *vty)
{ {
switch (vty->node) { switch (vty->node) {
@@ -829,7 +818,6 @@ struct vty_app_info g_vty_info = {
.version = PACKAGE_VERSION, .version = PACKAGE_VERSION,
.copyright = trx_copyright, .copyright = trx_copyright,
.go_parent_cb = trx_vty_go_parent, .go_parent_cb = trx_vty_go_parent,
.is_config_node = trx_vty_is_config_node,
}; };
struct trx_ctx *vty_trx_ctx_alloc(void *talloc_ctx) struct trx_ctx *vty_trx_ctx_alloc(void *talloc_ctx)