Commit 6485f72b authored by Hans de Goede's avatar Hans de Goede

platform/x86: msi-laptop: Drop MSI_DRIVER_VERSION

Modules carrying there own version is a practice which the kernel
has stopped doing for a long time now, drop it.

While dropping the version pr_info from msi_init() lets remove
the somewhat useless pr_info() from msi_cleanup() as well.
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Link: https://lore.kernel.org/r/20220822150818.45765-2-hdegoede@redhat.com
parent ae030bbf
...@@ -53,8 +53,6 @@ ...@@ -53,8 +53,6 @@
#include <linux/input/sparse-keymap.h> #include <linux/input/sparse-keymap.h>
#include <acpi/video.h> #include <acpi/video.h>
#define MSI_DRIVER_VERSION "0.5"
#define MSI_LCD_LEVEL_MAX 9 #define MSI_LCD_LEVEL_MAX 9
#define MSI_EC_COMMAND_WIRELESS 0x10 #define MSI_EC_COMMAND_WIRELESS 0x10
...@@ -1109,8 +1107,6 @@ static int __init msi_init(void) ...@@ -1109,8 +1107,6 @@ static int __init msi_init(void)
set_auto_brightness(auto_brightness); set_auto_brightness(auto_brightness);
} }
pr_info("driver " MSI_DRIVER_VERSION " successfully loaded\n");
return 0; return 0;
fail_create_attr: fail_create_attr:
...@@ -1156,8 +1152,6 @@ static void __exit msi_cleanup(void) ...@@ -1156,8 +1152,6 @@ static void __exit msi_cleanup(void)
if (auto_brightness != 2) if (auto_brightness != 2)
set_auto_brightness(1); set_auto_brightness(1);
} }
pr_info("driver unloaded\n");
} }
module_init(msi_init); module_init(msi_init);
...@@ -1165,5 +1159,4 @@ module_exit(msi_cleanup); ...@@ -1165,5 +1159,4 @@ module_exit(msi_cleanup);
MODULE_AUTHOR("Lennart Poettering"); MODULE_AUTHOR("Lennart Poettering");
MODULE_DESCRIPTION("MSI Laptop Support"); MODULE_DESCRIPTION("MSI Laptop Support");
MODULE_VERSION(MSI_DRIVER_VERSION);
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment