aboutsummaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorSeth Forshee <seth.forshee@canonical.com>2011-12-09 11:08:03 -0600
committerJohn Rigby <john.rigby@linaro.org>2012-06-24 16:24:34 -0600
commitba99a5c0f0641447ee1b76289778488d9902b5c3 (patch)
tree98e85f85c9985d2a25ee4b2cedb188a3668f3a17 /drivers
parent5832099a07bdc1f763b711eff6d9b681659ed880 (diff)
UBUNTU: SAUCE: dell-wmi: Demote unknown WMI event message to pr_debug
BugLink: http://bugs.launchpad.net/bugs/581312 This message is informational in nature but is causing users to think that there's a problem. Demote to pr_debug to silence it by default. Signed-off-by: Seth Forshee <seth.forshee@canonical.com> Acked-by: Tim Gardner <tim.gardner@canonical.com> Acked-by: Herton Ronaldo Krzesinski <herton.krzesinski@canonical.com> Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/platform/x86/dell-wmi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/dell-wmi.c b/drivers/platform/x86/dell-wmi.c
index fa9a2171cc1..3ab412c18d2 100644
--- a/drivers/platform/x86/dell-wmi.c
+++ b/drivers/platform/x86/dell-wmi.c
@@ -165,7 +165,7 @@ static void dell_wmi_notify(u32 value, void *context)
u16 *buffer_entry = (u16 *)obj->buffer.pointer;
if (dell_new_hk_type && (buffer_entry[1] != 0x10)) {
- pr_info("Received unknown WMI event (0x%x)\n",
+ pr_debug("Received unknown WMI event (0x%x)\n",
buffer_entry[1]);
kfree(obj);
return;