aboutsummaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorSeth Forshee <seth.forshee@canonical.com>2011-12-09 11:08:03 -0600
committerLeann Ogasawara <leann.ogasawara@canonical.com>2012-06-19 00:02:12 -0700
commit7f95fdb3673f57c719b223807420e12ff3194f3c (patch)
tree83ef0296cabcd252eb23c9637adccfcec1210868 /drivers
parent8d1223cf41eca93f06c286b9e3cb5bbe5cc514b3 (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;