Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Sinan Kaya and committed by
Corey Minyard
f5135614 50121beb

+1 -2
+1 -2
drivers/acpi/acpi_ipmi.c
··· 429 429 if (msg->recv_type == IPMI_RESPONSE_RECV_TYPE && 430 430 msg->msg.data_len == 1) { 431 431 if (msg->msg.data[0] == IPMI_TIMEOUT_COMPLETION_CODE) { 432 - dev_WARN_ONCE(dev, true, 433 - "Unexpected response (timeout).\n"); 432 + dev_dbg_once(dev, "Unexpected response (timeout).\n"); 434 433 tx_msg->msg_done = ACPI_IPMI_TIMEOUT; 435 434 } 436 435 goto out_comp;