summaryrefslogtreecommitdiffstats
path: root/hw/bt.c
diff options
context:
space:
mode:
authorKamalesh Babulal <kamalesh@linux.vnet.ibm.com>2015-07-01 12:49:42 +0530
committerStewart Smith <stewart@linux.vnet.ibm.com>2015-07-02 13:33:42 +1000
commit988ce9c2a0d5fa1df8e98e4c8cd7c0c7edf3ed20 (patch)
treee74555573de06a0842e42e2be18616b33f068ac3 /hw/bt.c
parenta043dc7f4741c4c06fb45994baaff2453ee5aae1 (diff)
downloadtalos-skiboot-988ce9c2a0d5fa1df8e98e4c8cd7c0c7edf3ed20.tar.gz
talos-skiboot-988ce9c2a0d5fa1df8e98e4c8cd7c0c7edf3ed20.zip
hw/bt.c: Fix trivial typos
Fix trivial typos 'messasge' -> 'message' 'resposne' -> 'response' 'intialized' -> 'initialized' One of them, is in the log message. Signed-off-by: Kamalesh Babulal <kamalesh@linux.vnet.ibm.com> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hw/bt.c')
-rw-r--r--hw/bt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/bt.c b/hw/bt.c
index 0c89d9fb..610aa3f2 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);
OpenPOWER on IntegriCloud