The version printed was never updated and kernel version is better indication of what is fixed or not. Signed-off-by: Stephen Hemminger --- net/sched/sch_netem.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/net/sched/sch_netem.c b/net/sched/sch_netem.c index 1957a15f6d1a..9ae09e781166 100644 --- a/net/sched/sch_netem.c +++ b/net/sched/sch_netem.c @@ -28,8 +28,6 @@ #include #include -#define VERSION "1.3" - /* * Limit for recursion from duplication. * Duplicated packets are re-enqueued at the root qdisc, which may @@ -1371,16 +1369,15 @@ 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) { unregister_qdisc(&netem_qdisc_ops); } + module_init(netem_module_init) module_exit(netem_module_exit) MODULE_LICENSE("GPL"); -- 2.51.0