diff options
author | 2024-08-02 01:07:23 -0700 | |
---|---|---|
committer | 2024-08-05 13:48:48 +0100 | |
commit | 10a6545f0bdcbb920c6a8a033fe342111d204915 (patch) | |
tree | d17fb777ac007526c8aedfc6d8a02a59076a2adb | |
parent | net: phy: vitesse: implement downshift in vsc73xx phys (diff) | |
download | wireguard-linux-10a6545f0bdcbb920c6a8a033fe342111d204915.tar.xz wireguard-linux-10a6545f0bdcbb920c6a8a033fe342111d204915.zip |
net: netconsole: Fix MODULE_AUTHOR format
Update the MODULE_AUTHOR for netconsole, according to the format, as
stated in module.h:
use "Name <email>" or just "Name"
Suggested-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: Breno Leitao <leitao@debian.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/netconsole.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 <linux/etherdevice.h> #include <linux/utsname.h> -MODULE_AUTHOR("Maintainer: Matt Mackall <mpm@selenic.com>"); +MODULE_AUTHOR("Matt Mackall <mpm@selenic.com>"); MODULE_DESCRIPTION("Console driver for network interfaces"); MODULE_LICENSE("GPL"); |