diff options
author | Alex Hung <alex.hung@canonical.com> | 2017-07-20 20:56:48 -0700 |
---|---|---|
committer | Darren Hart (VMware) <dvhart@infradead.org> | 2017-08-18 16:23:15 -0700 |
commit | a9c37b74fd0242f3c8ce4221bb7a61cb14ccd59b (patch) | |
tree | 178fe57b45bf1328d61cd0c347b1e682e43b2838 /drivers/platform | |
parent | d496c8750f6f1ac61c7ecca8cb442ea40e67077e (diff) | |
download | linux-stable-a9c37b74fd0242f3c8ce4221bb7a61cb14ccd59b.tar.gz linux-stable-a9c37b74fd0242f3c8ce4221bb7a61cb14ccd59b.tar.bz2 linux-stable-a9c37b74fd0242f3c8ce4221bb7a61cb14ccd59b.zip |
platform/x86: intel-vbtn: reduce unnecessary messages for normal users
Unsupported events is only useful for developers and does not meaningful
for users. Using dev_dbg makes more sense and reduces noise in kernel
messages.
Signed-off-by: Alex Hung <alex.hung@canonical.com>
Signed-off-by: Darren Hart (VMware) <dvhart@infradead.org>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/intel-vbtn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/intel-vbtn.c b/drivers/platform/x86/intel-vbtn.c index 480926786cb8..58c5ff36523a 100644 --- a/drivers/platform/x86/intel-vbtn.c +++ b/drivers/platform/x86/intel-vbtn.c @@ -83,7 +83,7 @@ static void notify_handler(acpi_handle handle, u32 event, void *context) } else if (sparse_keymap_report_event(priv->input_dev, event, 1, true)) { return; } - dev_info(&device->dev, "unknown event index 0x%x\n", event); + dev_dbg(&device->dev, "unknown event index 0x%x\n", event); } static int intel_vbtn_probe(struct platform_device *device) |