spi: s3c64xx: Fix spelling mistake "hannel" -> "channel"
authorColin Ian King <colin.i.king@gmail.com>
Wed, 8 Jun 2022 08:19:12 +0000 (09:19 +0100)
committerMark Brown <broonie@kernel.org>
Wed, 8 Jun 2022 10:49:34 +0000 (11:49 +0100)
There is a spelling mistake in a dev_err message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Alim Akhtar <alim.akhtar@samsung.com>
Link: https://lore.kernel.org/r/20220608081912.2083086-1-colin.i.king@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-s3c64xx.c

index 82558e3..f56d9c8 100644 (file)
@@ -360,7 +360,7 @@ static int s3c64xx_spi_prepare_transfer(struct spi_master *spi)
 
        sdd->tx_dma.ch = dma_request_chan(&sdd->pdev->dev, "tx");
        if (IS_ERR(sdd->tx_dma.ch)) {
-               dev_err(&sdd->pdev->dev, "Failed to get TX DMA hannel\n");
+               dev_err(&sdd->pdev->dev, "Failed to get TX DMA channel\n");
                dma_release_channel(sdd->rx_dma.ch);
                sdd->tx_dma.ch = 0;
                sdd->rx_dma.ch = 0;