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

spi: fix comment/printk typos in spi

Correct spelling typo in drivers/spi

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

Masanari Iida and committed by
Jiri Kosina
886db6ac 7c6c4d5c

+6 -6
+1 -1
drivers/spi/spi-au1550.c
··· 475 475 /* 476 476 * due to an spi error we consider transfer as done, 477 477 * so mask all events until before next transfer start 478 - * and stop the possibly running dma immediatelly 478 + * and stop the possibly running dma immediately 479 479 */ 480 480 au1550_spi_mask_ack_all(hw); 481 481 au1xxx_dbdma_stop(hw->dma_rx_ch);
+1 -1
drivers/spi/spi-bfin-sport.c
··· 467 467 dev_dbg(drv_data->dev, "IO write error!\n"); 468 468 drv_data->state = ERROR_STATE; 469 469 } else { 470 - /* Update total byte transfered */ 470 + /* Update total byte transferred */ 471 471 message->actual_length += transfer->len; 472 472 /* Move to next transfer of this msg */ 473 473 drv_data->state = bfin_sport_spi_next_transfer(drv_data);
+1 -1
drivers/spi/spi-oc-tiny.c
··· 129 129 unsigned int i; 130 130 131 131 if (hw->irq >= 0) { 132 - /* use intrrupt driven data transfer */ 132 + /* use interrupt driven data transfer */ 133 133 hw->len = t->len; 134 134 hw->txp = t->tx_buf; 135 135 hw->rxp = t->rx_buf;
+2 -2
drivers/spi/spi-ppc4xx.c
··· 101 101 u8 dummy; 102 102 /* 103 103 * Clock divisor modulus register 104 - * This uses the follwing formula: 104 + * This uses the following formula: 105 105 * SCPClkOut = OPBCLK/(4(CDM + 1)) 106 106 * or 107 107 * CDM = (OPBCLK/4*SCPClkOut) - 1 ··· 201 201 return -EINVAL; 202 202 } 203 203 204 - /* Write new configration */ 204 + /* Write new configuration */ 205 205 out_8(&hw->regs->mode, cs->mode); 206 206 207 207 /* Set the clock */
+1 -1
drivers/spi/spi-topcliff-pch.c
··· 505 505 } 506 506 507 507 if (unlikely(pspi->max_speed_hz == 0)) { 508 - dev_err(&pspi->dev, "%s pch_spi_tranfer maxspeed=%d\n", 508 + dev_err(&pspi->dev, "%s pch_spi_transfer maxspeed=%d\n", 509 509 __func__, pspi->max_speed_hz); 510 510 retval = -EINVAL; 511 511 goto err_out;