From 4398429a5ff4bc8b38c6c57e78debc565a089672 Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Sat, 9 May 2026 10:03:23 -0700 Subject: [PATCH] net/sched: netem: remove useless VERSION The version printed was never updated and kernel version is better indication of what is fixed or not. Signed-off-by: Stephen Hemminger Link: https://patch.msgid.link/20260509171123.307549-3-stephen@networkplumber.org Signed-off-by: Paolo Abeni --- net/sched/sch_netem.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/net/sched/sch_netem.c b/net/sched/sch_netem.c index 5623610186bd..e82c86c2654d 100644 --- a/net/sched/sch_netem.c +++ b/net/sched/sch_netem.c @@ -27,8 +27,6 @@ #include #include -#define VERSION "1.3" - /* Network Emulation Queuing algorithm. ==================================== @@ -1413,10 +1411,8 @@ static struct Qdisc_ops netem_qdisc_ops __read_mostly = { }; MODULE_ALIAS_NET_SCH("netem"); - static int __init netem_module_init(void) { - pr_info("netem: version " VERSION "\n"); return register_qdisc(&netem_qdisc_ops); } static void __exit netem_module_exit(void)