From: Andy Lutomirski <[email protected]> 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: Rafael Wysocki <[email protected]> Cc: [email protected] Cc: [email protected] Cc: [email protected] Signed-off-by: Darren Hart (VMware) <[email protected]> --- drivers/platform/x86/wmi.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/platform/x86/wmi.c b/drivers/platform/x86/wmi.c index ceeb8c1..0043581 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); -- 2.9.4

