Skip to content

Commit 1016daf

Browse files
committed
ipmi: Make two logs unique
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>
1 parent be85035 commit 1016daf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/char/ipmi/ipmi_msghandler.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4083,7 +4083,7 @@ static int handle_ipmb_direct_rcv_rsp(struct ipmi_smi *intf,
40834083
recv_msg = (struct ipmi_recv_msg *) msg->user_data;
40844084
if (recv_msg == NULL) {
40854085
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");
40874087
return 0;
40884088
}
40894089

@@ -4501,7 +4501,7 @@ static int handle_bmc_rsp(struct ipmi_smi *intf,
45014501
recv_msg = (struct ipmi_recv_msg *) msg->user_data;
45024502
if (recv_msg == NULL) {
45034503
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");
45054505
return 0;
45064506
}
45074507

0 commit comments

Comments
 (0)