diff options
author | Oliver Hartkopp <socketcan@hartkopp.net> | 2020-10-12 09:43:54 +0200 |
---|---|---|
committer | Marc Kleine-Budde <mkl@pengutronix.de> | 2020-10-12 10:06:39 +0200 |
commit | f726f3d37163f714034aa5fd1f92a1a73df4297f (patch) | |
tree | f872ba0519250dbbd2c909e5f51ed29d018cdbaa /net/can/isotp.c | |
parent | can: isotp: implement cleanups / improvements from review (diff) | |
download | linux-f726f3d37163f714034aa5fd1f92a1a73df4297f.tar.xz linux-f726f3d37163f714034aa5fd1f92a1a73df4297f.zip |
can: remove obsolete version strings
As pointed out by Jakub Kicinski here:
http://lore.kernel.org/r/20201009175751.5c54097f@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com
this patch removes the obsolete version information of the different
CAN protocols and the AF_CAN core module.
Signed-off-by: Oliver Hartkopp <socketcan@hartkopp.net>
Link: https://lore.kernel.org/r/20201012074354.25839-2-socketcan@hartkopp.net
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'net/can/isotp.c')
-rw-r--r-- | net/can/isotp.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net/can/isotp.c b/net/can/isotp.c index ca63061bb932..4c2062875893 100644 --- a/net/can/isotp.c +++ b/net/can/isotp.c @@ -72,8 +72,6 @@ #include <net/sock.h> #include <net/net_namespace.h> -#define CAN_ISOTP_VERSION "20200928" - MODULE_DESCRIPTION("PF_CAN isotp 15765-2:2016 protocol"); MODULE_LICENSE("Dual BSD/GPL"); MODULE_AUTHOR("Oliver Hartkopp <socketcan@hartkopp.net>"); @@ -1408,7 +1406,7 @@ static __init int isotp_module_init(void) { int err; - pr_info("can: isotp protocol (rev " CAN_ISOTP_VERSION ")\n"); + pr_info("can: isotp protocol\n"); err = can_proto_register(&isotp_can_proto); if (err < 0) |