From 10a6545f0bdcbb920c6a8a033fe342111d204915 Mon Sep 17 00:00:00 2001 From: Breno Leitao Date: Fri, 2 Aug 2024 01:07:23 -0700 Subject: [PATCH] net: netconsole: Fix MODULE_AUTHOR format Update the MODULE_AUTHOR for netconsole, according to the format, as stated in module.h: use "Name " or just "Name" Suggested-by: Stephen Hemminger Signed-off-by: Breno Leitao Signed-off-by: David S. Miller --- drivers/net/netconsole.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/netconsole.c b/drivers/net/netconsole.c index 9c09293b5258..ffedf7648bed 100644 --- a/drivers/net/netconsole.c +++ b/drivers/net/netconsole.c @@ -38,7 +38,7 @@ #include #include -MODULE_AUTHOR("Maintainer: Matt Mackall "); +MODULE_AUTHOR("Matt Mackall "); MODULE_DESCRIPTION("Console driver for network interfaces"); MODULE_LICENSE("GPL"); -- 2.50.1