Messages in this thread Patch in this message |  | | From | "Enrico Weigelt, metux IT consult" <> | Subject | [PATCH 3/8] net: batman-adv: remove unneeded MODULE_VERSION() usage | Date | Sat, 4 Jan 2020 20:51:26 +0100 |
| |
Remove MODULE_VERSION(), as it isn't needed at all: the only version making sense is the kernel version.
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> --- net/batman-adv/main.c | 1 - 1 file changed, 1 deletion(-)
diff --git a/net/batman-adv/main.c b/net/batman-adv/main.c index 4811ec65bc43..8ccca3734b7a 100644 --- a/net/batman-adv/main.c +++ b/net/batman-adv/main.c @@ -748,6 +748,5 @@ MODULE_LICENSE("GPL"); MODULE_AUTHOR(BATADV_DRIVER_AUTHOR); MODULE_DESCRIPTION(BATADV_DRIVER_DESC); MODULE_SUPPORTED_DEVICE(BATADV_DRIVER_DEVICE); -MODULE_VERSION(BATADV_SOURCE_VERSION); MODULE_ALIAS_RTNL_LINK("batadv"); MODULE_ALIAS_GENL_FAMILY(BATADV_NL_NAME); -- 2.11.0
|  |