diff options
author | Sinan Kaya <okaya@codeaurora.org> | 2017-03-23 11:32:29 -0400 |
---|---|---|
committer | Corey Minyard <cminyard@mvista.com> | 2017-04-07 12:25:37 -0500 |
commit | f513561455c31ffc4b1ba32a96b18fa72056cf1a (patch) | |
tree | da0eddda4b2730699aea488074de833be6070daf /drivers/acpi | |
parent | 50121beba5c3c23f615cdd283f648cd7cd732ecb (diff) | |
download | talos-obmc-linux-f513561455c31ffc4b1ba32a96b18fa72056cf1a.tar.gz talos-obmc-linux-f513561455c31ffc4b1ba32a96b18fa72056cf1a.zip |
ACPI / IPMI: change warning to debug on timeout
Getting timeout message from BMC when trying to read from a non-existent
FRU. This is expected but warning is not.
Let's reduce the warning to debug.
Signed-off-by: Sinan Kaya <okaya@codeaurora.org>
Acked-by: Rafael J. Wysocki <rafael@kernel.org>
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/acpi_ipmi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/acpi/acpi_ipmi.c b/drivers/acpi/acpi_ipmi.c index 747c2ba98534..1b64419e2fec 100644 --- a/drivers/acpi/acpi_ipmi.c +++ b/drivers/acpi/acpi_ipmi.c @@ -429,8 +429,7 @@ static void ipmi_msg_handler(struct ipmi_recv_msg *msg, void *user_msg_data) if (msg->recv_type == IPMI_RESPONSE_RECV_TYPE && msg->msg.data_len == 1) { if (msg->msg.data[0] == IPMI_TIMEOUT_COMPLETION_CODE) { - dev_WARN_ONCE(dev, true, - "Unexpected response (timeout).\n"); + dev_dbg_once(dev, "Unexpected response (timeout).\n"); tx_msg->msg_done = ACPI_IPMI_TIMEOUT; } goto out_comp; |