You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There were two identical logs in two different places, so you couldn't
tell which one was being logged. Make them unique.
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Copy file name to clipboardExpand all lines: drivers/char/ipmi/ipmi_msghandler.c
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -4083,7 +4083,7 @@ static int handle_ipmb_direct_rcv_rsp(struct ipmi_smi *intf,
4083
4083
recv_msg= (structipmi_recv_msg*) msg->user_data;
4084
4084
if (recv_msg==NULL) {
4085
4085
dev_warn(intf->si_dev,
4086
-
"IPMI message received with no owner. This could be because of a malformed message, or because of a hardware error. Contact your hardware vendor for assistance.\n");
4086
+
"IPMI direct message received with no owner. This could be because of a malformed message, or because of a hardware error. Contact your hardware vendor for assistance.\n");
4087
4087
return0;
4088
4088
}
4089
4089
@@ -4501,7 +4501,7 @@ static int handle_bmc_rsp(struct ipmi_smi *intf,
4501
4501
recv_msg= (structipmi_recv_msg*) msg->user_data;
4502
4502
if (recv_msg==NULL) {
4503
4503
dev_warn(intf->si_dev,
4504
-
"IPMI message received with no owner. This could be because of a malformed message, or because of a hardware error. Contact your hardware vendor for assistance.\n");
4504
+
"IPMI SMI message received with no owner. This could be because of a malformed message, or because of a hardware error. Contact your hardware vendor for assistance.\n");
0 commit comments