[Skiboot] [TRIVIAL PATCH] hw/bt.c: Fix trivial typos

Kamalesh Babulal kamalesh at linux.vnet.ibm.com
Wed Jul 1 17:19:42 AEST 2015


Fix trivial typos
'messasge'   -> 'message'
'resposne'   -> 'response'
'intialized' -> 'initialized'

One of them, is in the log message.

Signed-off-by: Kamalesh Babulal <kamalesh at linux.vnet.ibm.com>
---
 hw/bt.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/hw/bt.c b/hw/bt.c
index 0c89d9f..610aa3f 100644
--- a/hw/bt.c
+++ b/hw/bt.c
@@ -238,7 +238,7 @@ static void bt_get_resp(void)
 	/* Byte 5 - Completion Code */
 	cc = bt_inb(BT_HOST2BMC);
 
-	/* Find the corresponding messasge */
+	/* Find the corresponding message */
 	list_for_each(&bt.msgq, tmp_bt_msg, link) {
 		if (tmp_bt_msg->seq == seq) {
 			bt_msg = tmp_bt_msg;
@@ -257,7 +257,7 @@ static void bt_get_resp(void)
 	ipmi_msg = &bt_msg->ipmi_msg;
 
 	/*
-	 * Make sure we have enough room to store the resposne. As all values
+	 * Make sure we have enough room to store the response. As all values
 	 * are unsigned we will also trigger this error if
 	 * bt_inb(BT_HOST2BMC) < BT_MIN_RESP_LEN (which should never occur).
 	 */
@@ -543,7 +543,7 @@ void bt_init(void)
 	list_head_init(&bt.msgq);
 	bt.queue_len = 0;
 
-	printf("BT: Interface intialized, IO 0x%04x\n", bt.base_addr);
+	printf("BT: Interface initialized, IO 0x%04x\n", bt.base_addr);
 
 	ipmi_register_backend(&bt_backend);
 
-- 
2.1.2



More information about the Skiboot mailing list