spi: s3c64xx: Fix spelling mistake "hannel" -> "channel"
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>
This commit is contained in:
parent
0ac8bc4f54
commit
9723070ecb
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue