From: Hans de Goede Date: Mon, 22 Aug 2022 15:08:18 +0000 (+0200) Subject: platform/x86: msi-laptop: Drop MSI_DRIVER_VERSION X-Git-Tag: v6.6.17~6495^2~56 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6485f72b515690bdbebc711755af096d1dc08ce2;p=platform%2Fkernel%2Flinux-rpi.git 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: Hans de Goede Link: https://lore.kernel.org/r/20220822150818.45765-2-hdegoede@redhat.com --- diff --git a/drivers/platform/x86/msi-laptop.c b/drivers/platform/x86/msi-laptop.c index 843f722..93ef885 100644 --- a/drivers/platform/x86/msi-laptop.c +++ b/drivers/platform/x86/msi-laptop.c @@ -53,8 +53,6 @@ #include #include -#define MSI_DRIVER_VERSION "0.5" - #define MSI_LCD_LEVEL_MAX 9 #define MSI_EC_COMMAND_WIRELESS 0x10 @@ -1109,8 +1107,6 @@ static int __init msi_init(void) set_auto_brightness(auto_brightness); } - pr_info("driver " MSI_DRIVER_VERSION " successfully loaded\n"); - return 0; fail_create_attr: @@ -1156,8 +1152,6 @@ static void __exit msi_cleanup(void) if (auto_brightness != 2) set_auto_brightness(1); } - - pr_info("driver unloaded\n"); } module_init(msi_init); @@ -1165,5 +1159,4 @@ module_exit(msi_cleanup); MODULE_AUTHOR("Lennart Poettering"); MODULE_DESCRIPTION("MSI Laptop Support"); -MODULE_VERSION(MSI_DRIVER_VERSION); MODULE_LICENSE("GPL");