Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1651763 > unrolled thread
| Started by | Darren Hart <dvhart@infradead.org> |
|---|---|
| First post | 2017-05-27 07:40 +0200 |
| Last post | 2017-05-27 07:40 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 01/16] platform/x86: wmi: Drop "Mapper (un)loaded" messages Darren Hart <dvhart@infradead.org> - 2017-05-27 07:40 +0200
| From | Darren Hart <dvhart@infradead.org> |
|---|---|
| Date | 2017-05-27 07:40 +0200 |
| Subject | [PATCH 01/16] platform/x86: wmi: Drop "Mapper (un)loaded" messages |
| Message-ID | <tLCCe-7vw-9@gated-at.bofh.it> |
From: Andy Lutomirski <luto@kernel.org>
WMI is just a driver. There is no need to announce when it is loaded.
Signed-off-by: Andy Lutomirski <luto@kernel.org>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Mario Limonciello <mario_limonciello@dell.com>
Cc: Pali Rohár <pali.rohar@gmail.com>
Cc: Rafael Wysocki <rjw@rjwysocki.net>
Cc: linux-kernel@vger.kernel.org
Cc: platform-driver-x86@vger.kernel.org
Cc: linux-acpi@vger.kernel.org
Signed-off-by: Darren Hart (VMware) <dvhart@infradead.org>
---
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
Back to top | Article view | linux.kernel
csiph-web