linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH][next] spi: s3c64xx: Fix spelling mistake "hannel" -> "channel"
@ 2022-06-08  8:19 ` Colin Ian King
  2022-06-08  9:30   ` Krzysztof Kozlowski
                     ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Colin Ian King @ 2022-06-08  8:19 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andi Shyti, Mark Brown, Alim Akhtar,
	linux-spi, linux-samsung-soc, linux-arm-kernel
  Cc: kernel-janitors, linux-kernel

There is a spelling mistake in a dev_err message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/spi/spi-s3c64xx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c
index 82558e37c735..f56d9c819a76 100644
--- a/drivers/spi/spi-s3c64xx.c
+++ b/drivers/spi/spi-s3c64xx.c
@@ -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;
-- 
2.35.3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH][next] spi: s3c64xx: Fix spelling mistake "hannel" -> "channel"
  2022-06-08  8:19 ` [PATCH][next] spi: s3c64xx: Fix spelling mistake "hannel" -> "channel" Colin Ian King
@ 2022-06-08  9:30   ` Krzysztof Kozlowski
  2022-06-08 10:46   ` Alim Akhtar
  2022-06-08 13:35   ` Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2022-06-08  9:30 UTC (permalink / raw)
  To: Colin Ian King, Andi Shyti, Mark Brown, Alim Akhtar, linux-spi,
	linux-samsung-soc, linux-arm-kernel
  Cc: kernel-janitors, linux-kernel

On 08/06/2022 10:19, Colin Ian King wrote:
> 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>


Best regards,
Krzysztof

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [PATCH][next] spi: s3c64xx: Fix spelling mistake "hannel" -> "channel"
  2022-06-08  8:19 ` [PATCH][next] spi: s3c64xx: Fix spelling mistake "hannel" -> "channel" Colin Ian King
  2022-06-08  9:30   ` Krzysztof Kozlowski
@ 2022-06-08 10:46   ` Alim Akhtar
  2022-06-08 13:35   ` Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: Alim Akhtar @ 2022-06-08 10:46 UTC (permalink / raw)
  To: 'Colin Ian King', 'Krzysztof Kozlowski',
	'Andi Shyti', 'Mark Brown',
	linux-spi, linux-samsung-soc, linux-arm-kernel
  Cc: kernel-janitors, linux-kernel



>-----Original Message-----
>From: Colin Ian King [mailto:colin.i.king@gmail.com]
>Sent: Wednesday, June 8, 2022 1:49 PM
>To: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>; Andi Shyti
><andi@etezian.org>; Mark Brown <broonie@kernel.org>; Alim Akhtar
><alim.akhtar@samsung.com>; linux-spi@vger.kernel.org; linux-samsung-
>soc@vger.kernel.org; linux-arm-kernel@lists.infradead.org
>Cc: kernel-janitors@vger.kernel.org; linux-kernel@vger.kernel.org
>Subject: [PATCH][next] 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>
>---

Reviewed-by: Alim Akhtar <alim.akhtar@samsung.com>

> drivers/spi/spi-s3c64xx.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c index
>82558e37c735..f56d9c819a76 100644
>--- a/drivers/spi/spi-s3c64xx.c
>+++ b/drivers/spi/spi-s3c64xx.c
>@@ -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;
>--
>2.35.3



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH][next] spi: s3c64xx: Fix spelling mistake "hannel" -> "channel"
  2022-06-08  8:19 ` [PATCH][next] spi: s3c64xx: Fix spelling mistake "hannel" -> "channel" Colin Ian King
  2022-06-08  9:30   ` Krzysztof Kozlowski
  2022-06-08 10:46   ` Alim Akhtar
@ 2022-06-08 13:35   ` Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2022-06-08 13:35 UTC (permalink / raw)
  To: linux-samsung-soc, linux-arm-kernel, krzysztof.kozlowski,
	Colin Ian King, andi, linux-spi, alim.akhtar
  Cc: linux-kernel, kernel-janitors

On Wed, 8 Jun 2022 09:19:12 +0100, Colin Ian King wrote:
> There is a spelling mistake in a dev_err message. Fix it.
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next

Thanks!

[1/1] spi: s3c64xx: Fix spelling mistake "hannel" -> "channel"
      commit: 9723070ecb280e3046dd32a4d11cb52a332507cc

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-06-08 13:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CGME20220608081916epcas5p2c35a76a868edcb8ec14d3a83edb00ee6@epcas5p2.samsung.com>
2022-06-08  8:19 ` [PATCH][next] spi: s3c64xx: Fix spelling mistake "hannel" -> "channel" Colin Ian King
2022-06-08  9:30   ` Krzysztof Kozlowski
2022-06-08 10:46   ` Alim Akhtar
2022-06-08 13:35   ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).