Message ID | 20201203124803.23390-10-info@metux.net |
---|---|
State | New |
Headers | show |
Series | [01/11] drivers: staging: speakup: remove unneeded MODULE_VERSION() call | expand |
diff --git a/drivers/staging/rtl8192u/r8192U_core.c b/drivers/staging/rtl8192u/r8192U_core.c index 27dc181c4c9b..da871f45042a 100644 --- a/drivers/staging/rtl8192u/r8192U_core.c +++ b/drivers/staging/rtl8192u/r8192U_core.c @@ -90,7 +90,6 @@ static const struct usb_device_id rtl8192_usb_id_tbl[] = { }; MODULE_LICENSE("GPL"); -MODULE_VERSION("V 1.1"); MODULE_DEVICE_TABLE(usb, rtl8192_usb_id_tbl); MODULE_DESCRIPTION("Linux driver for Realtek RTL8192 USB WiFi cards");
Remove MODULE_VERSION(), as it doesn't seem to have any pratical purpose. The code received lots of huge changes, but module version remained constant, since it landed in mainline tree, back 11 years go. Unmaintained version numbers aren't actually useful. For in-tree drivers, the kernel version really matters. Signed-off-by: Enrico Weigelt <info@metux.net> --- drivers/staging/rtl8192u/r8192U_core.c | 1 - 1 file changed, 1 deletion(-)