diff options
author | Stewart Smith <stewart@linux.vnet.ibm.com> | 2015-08-26 16:40:10 +1000 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2015-08-26 16:40:10 +1000 |
commit | 9eeb5af64be73fb2ca981330b39d0b46acc69057 (patch) | |
tree | e6ca9e9388b07aca66da5f86019c8ce0a58715aa /platforms | |
parent | dd3c3ec045ff47adb5531a49bda50e4c86cd38fa (diff) | |
download | skiboot-9eeb5af64be73fb2ca981330b39d0b46acc69057.zip skiboot-9eeb5af64be73fb2ca981330b39d0b46acc69057.tar.gz skiboot-9eeb5af64be73fb2ca981330b39d0b46acc69057.tar.bz2 |
Fix spelling mistakes
See https://github.com/lucasdemarchi/codespel
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'platforms')
-rw-r--r-- | platforms/astbmc/common.c | 2 | ||||
-rw-r--r-- | platforms/ibm-fsp/firenze.c | 2 | ||||
-rw-r--r-- | platforms/ibm-fsp/lxvpd.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/platforms/astbmc/common.c b/platforms/astbmc/common.c index 50341d6..2af0309 100644 --- a/platforms/astbmc/common.c +++ b/platforms/astbmc/common.c @@ -342,7 +342,7 @@ void astbmc_early_init(void) ast_setup_sio_uart1(UART_IO_BASE, UART_LPC_IRQ); } - /* Similarily, some BMCs don't configure the BT interrupt properly */ + /* Similarly, some BMCs don't configure the BT interrupt properly */ ast_setup_ibt(BT_IO_BASE, BT_LPC_IRQ); /* Setup UART and use it as console with interrupts */ diff --git a/platforms/ibm-fsp/firenze.c b/platforms/ibm-fsp/firenze.c index 507841d..4dd07a1 100644 --- a/platforms/ibm-fsp/firenze.c +++ b/platforms/ibm-fsp/firenze.c @@ -285,7 +285,7 @@ static void firenze_send_pci_inventory(void) aend = (end + 0xffful) & ~0xffful; offset = PSI_DMA_PCIE_INVENTORY + (base & 0xfff); - /* We can only accomodate so many entries in the PSI map */ + /* We can only accommodate so many entries in the PSI map */ if ((aend - abase) > PSI_DMA_PCIE_INVENTORY_SIZE) { prerror("PLAT: PCIe inventory too large (%lld bytes)\n", aend - abase); diff --git a/platforms/ibm-fsp/lxvpd.c b/platforms/ibm-fsp/lxvpd.c index 43a1c5e..1155070 100644 --- a/platforms/ibm-fsp/lxvpd.c +++ b/platforms/ibm-fsp/lxvpd.c @@ -157,7 +157,7 @@ static void lxvpd_parse_1004_map(struct phb *phb, const uint8_t *sm, uint8_t sz) num_slots = (sz / sizeof(struct pci_slot_entry_1004)); slot_info = lxvpd_alloc_slot_info(phb, num_slots); - /* Iterate thru the entries in the keyword */ + /* Iterate through the entries in the keyword */ entry = (const struct pci_slot_entry_1004 *)sm; for (slot = 0; slot < num_slots; slot++) { info = &slot_info[slot]; @@ -206,7 +206,7 @@ static void lxvpd_parse_1005_map(struct phb *phb, const uint8_t *sm, uint8_t sz) num_slots = (sz / sizeof(struct pci_slot_entry_1005)); slot_info = lxvpd_alloc_slot_info(phb, num_slots); - /* Iterate thru the entries in the keyword */ + /* Iterate through the entries in the keyword */ entry = (const struct pci_slot_entry_1005 *)sm; for (slot = 0; slot < num_slots; slot++) { info = &slot_info[slot]; |