diff options
author | Andy Lutomirski <[email protected]> | 2015-11-24 20:15:48 -0800 |
---|---|---|
committer | Darren Hart (VMware) <[email protected]> | 2017-06-06 10:15:17 -0700 |
commit | 0f97ebd1bcc408fe1820e83e6e11b06ce041018f (patch) | |
tree | 39477e0c8498e2bb5c747009b29463f757941d54 | |
parent | 5d4be5f2b1f1919ffbf1ca5c9c014692848bafd1 (diff) |
platform/x86: wmi: Drop "Mapper (un)loaded" messages
WMI is just a driver. There is no need to announce when it is loaded.
Signed-off-by: Andy Lutomirski <[email protected]>
Cc: Andy Lutomirski <[email protected]>
Cc: Mario Limonciello <[email protected]>
Cc: Pali Rohár <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Acked-by: Rafael J. Wysocki <[email protected]>
Signed-off-by: Darren Hart (VMware) <[email protected]>
-rw-r--r-- | drivers/platform/x86/wmi.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/platform/x86/wmi.c b/drivers/platform/x86/wmi.c index ceeb8c188ef3..004358140239 100644 --- a/drivers/platform/x86/wmi.c +++ b/drivers/platform/x86/wmi.c @@ -836,7 +836,6 @@ static int __init acpi_wmi_init(void) return error; } - pr_info("Mapper loaded\n"); return 0; } @@ -844,8 +843,6 @@ static void __exit acpi_wmi_exit(void) { acpi_bus_unregister_driver(&acpi_wmi_driver); class_unregister(&wmi_class); - - pr_info("Mapper unloaded\n"); } subsys_initcall(acpi_wmi_init); |