aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2020-01-12 12:21:58 +0100
committerHarald Welte <laforge@osmocom.org>2020-01-12 14:24:24 +0100
commit52e14129f20c6ec2fc129ed436f9c941dc714775 (patch)
treee040747910661b68aee03764d740f17373c738ec
parent6f674dea424f6fad6083a230f959841cd912e3fb (diff)
e1d: Remove bogus vty_show function.
It's optional for an input driver to provide this function, and e.g. mISDN doesn't provide it, either. Change-Id: I56ed4244121f2019ece80d15bd07d5a8ce958273
-rw-r--r--src/input/e1d.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/input/e1d.c b/src/input/e1d.c
index bbbf8d5..c15c081 100644
--- a/src/input/e1d.c
+++ b/src/input/e1d.c
@@ -246,19 +246,10 @@ e1d_line_update(struct e1inp_line *line)
return 0;
}
-static void
-e1d_vty_show(struct vty *vty, struct e1inp_line *line)
-{
- /* FIXME */
- vty_out(vty, "Not supported yet%s", VTY_NEWLINE);
-}
-
-
struct e1inp_driver e1d_driver = {
.name = "e1d",
.want_write = e1d_want_write,
.line_update = e1d_line_update,
- .vty_show = e1d_vty_show,
};
int