mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH][next] ASoC: sprd: Fix spelling mistake "faied" -> "failed"
@ 2019-04-04  7:56 Colin King
  2019-04-04  8:00 ` Mukesh Ojha
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Colin King @ 2019-04-04  7:56 UTC (permalink / raw)
  To: Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai,
	Orson Zhai, Baolin Wang, Chunyan Zhang, alsa-devel
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

There are two identical spelling mistakes in dev_err messages. Fix them.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 sound/soc/sprd/sprd-pcm-compress.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/sprd/sprd-pcm-compress.c b/sound/soc/sprd/sprd-pcm-compress.c
index dc84257cffc2..e008525a6cb3 100644
--- a/sound/soc/sprd/sprd-pcm-compress.c
+++ b/sound/soc/sprd/sprd-pcm-compress.c
@@ -282,13 +282,13 @@ static int sprd_platform_compr_set_params(struct snd_compr_stream *cstream,
 	 */
 	ret = sprd_platform_compr_dma_config(cstream, params, 1);
 	if (ret) {
-		dev_err(dev, "faied to config stage 1 DMA: %d\n", ret);
+		dev_err(dev, "failed to config stage 1 DMA: %d\n", ret);
 		return ret;
 	}
 
 	ret = sprd_platform_compr_dma_config(cstream, params, 0);
 	if (ret) {
-		dev_err(dev, "faied to config stage 0 DMA: %d\n", ret);
+		dev_err(dev, "failed to config stage 0 DMA: %d\n", ret);
 		goto config_err;
 	}
 
-- 
2.20.1


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

* Re: [PATCH][next] ASoC: sprd: Fix spelling mistake "faied" -> "failed"
  2019-04-04  7:56 [PATCH][next] ASoC: sprd: Fix spelling mistake "faied" -> "failed" Colin King
@ 2019-04-04  8:00 ` Mukesh Ojha
  2019-04-04  8:04 ` Baolin Wang
  2019-04-04  8:16 ` Applied "ASoC: sprd: Fix spelling mistake "faied" -> "failed"" to the asoc tree Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: Mukesh Ojha @ 2019-04-04  8:00 UTC (permalink / raw)
  To: Colin King, Liam Girdwood, Mark Brown, Jaroslav Kysela,
	Takashi Iwai, Orson Zhai, Baolin Wang, Chunyan Zhang, alsa-devel
  Cc: kernel-janitors, linux-kernel


On 4/4/2019 1:26 PM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> There are two identical spelling mistakes in dev_err messages. Fix them.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>

Cheers,
-Mukesh
> ---
>   sound/soc/sprd/sprd-pcm-compress.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/sound/soc/sprd/sprd-pcm-compress.c b/sound/soc/sprd/sprd-pcm-compress.c
> index dc84257cffc2..e008525a6cb3 100644
> --- a/sound/soc/sprd/sprd-pcm-compress.c
> +++ b/sound/soc/sprd/sprd-pcm-compress.c
> @@ -282,13 +282,13 @@ static int sprd_platform_compr_set_params(struct snd_compr_stream *cstream,
>   	 */
>   	ret = sprd_platform_compr_dma_config(cstream, params, 1);
>   	if (ret) {
> -		dev_err(dev, "faied to config stage 1 DMA: %d\n", ret);
> +		dev_err(dev, "failed to config stage 1 DMA: %d\n", ret);
>   		return ret;
>   	}
>   
>   	ret = sprd_platform_compr_dma_config(cstream, params, 0);
>   	if (ret) {
> -		dev_err(dev, "faied to config stage 0 DMA: %d\n", ret);
> +		dev_err(dev, "failed to config stage 0 DMA: %d\n", ret);
>   		goto config_err;
>   	}
>   

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

* Re: [PATCH][next] ASoC: sprd: Fix spelling mistake "faied" -> "failed"
  2019-04-04  7:56 [PATCH][next] ASoC: sprd: Fix spelling mistake "faied" -> "failed" Colin King
  2019-04-04  8:00 ` Mukesh Ojha
@ 2019-04-04  8:04 ` Baolin Wang
  2019-04-04  8:16 ` Applied "ASoC: sprd: Fix spelling mistake "faied" -> "failed"" to the asoc tree Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: Baolin Wang @ 2019-04-04  8:04 UTC (permalink / raw)
  To: Colin King
  Cc: Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai,
	Orson Zhai, Chunyan Zhang, alsa-devel, kernel-janitors, LKML

On Thu, 4 Apr 2019 at 15:56, Colin King <colin.king@canonical.com> wrote:
>
> From: Colin Ian King <colin.king@canonical.com>
>
> There are two identical spelling mistakes in dev_err messages. Fix them.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Thanks for fixing my mistakes.
Reviewed-by: Baolin Wang <baolin.wang@linaro.org>

-- 
Baolin Wang
Best Regards

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

* Applied "ASoC: sprd: Fix spelling mistake "faied" -> "failed"" to the asoc tree
  2019-04-04  7:56 [PATCH][next] ASoC: sprd: Fix spelling mistake "faied" -> "failed" Colin King
  2019-04-04  8:00 ` Mukesh Ojha
  2019-04-04  8:04 ` Baolin Wang
@ 2019-04-04  8:16 ` Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2019-04-04  8:16 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Mark Brown, Liam Girdwood, Mark Brown, Jaroslav Kysela,
	Takashi Iwai, Orson Zhai, Baolin Wang, Chunyan Zhang, alsa-devel,
	kernel-janitors, linux-kernel, alsa-devel

The patch

   ASoC: sprd: Fix spelling mistake "faied" -> "failed"

has been applied to the asoc tree at

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git 

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

From 47fa5773f11c7cc9117d74ea5a18a22502d8f0f3 Mon Sep 17 00:00:00 2001
From: Colin Ian King <colin.king@canonical.com>
Date: Thu, 4 Apr 2019 08:56:03 +0100
Subject: [PATCH] ASoC: sprd: Fix spelling mistake "faied" -> "failed"

There are two identical spelling mistakes in dev_err messages. Fix them.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>
Reviewed-by: Baolin Wang <baolin.wang@linaro.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/sprd/sprd-pcm-compress.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/sprd/sprd-pcm-compress.c b/sound/soc/sprd/sprd-pcm-compress.c
index 424e9834d093..6cddf551bc11 100644
--- a/sound/soc/sprd/sprd-pcm-compress.c
+++ b/sound/soc/sprd/sprd-pcm-compress.c
@@ -281,13 +281,13 @@ static int sprd_platform_compr_set_params(struct snd_compr_stream *cstream,
 	 */
 	ret = sprd_platform_compr_dma_config(cstream, params, 1);
 	if (ret) {
-		dev_err(dev, "faied to config stage 1 DMA: %d\n", ret);
+		dev_err(dev, "failed to config stage 1 DMA: %d\n", ret);
 		return ret;
 	}
 
 	ret = sprd_platform_compr_dma_config(cstream, params, 0);
 	if (ret) {
-		dev_err(dev, "faied to config stage 0 DMA: %d\n", ret);
+		dev_err(dev, "failed to config stage 0 DMA: %d\n", ret);
 		goto config_err;
 	}
 
-- 
2.20.1


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

end of thread, other threads:[~2019-04-04  8:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-04  7:56 [PATCH][next] ASoC: sprd: Fix spelling mistake "faied" -> "failed" Colin King
2019-04-04  8:00 ` Mukesh Ojha
2019-04-04  8:04 ` Baolin Wang
2019-04-04  8:16 ` Applied "ASoC: sprd: Fix spelling mistake "faied" -> "failed"" to the asoc tree Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®