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

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>

+2 -2
+2 -2
drivers/char/ipmi/ipmi_msghandler.c
··· 4083 4083 recv_msg = (struct ipmi_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 return 0; 4088 4088 } 4089 4089 ··· 4501 4501 recv_msg = (struct ipmi_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"); 4505 4505 return 0; 4506 4506 } 4507 4507