linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ASoC: hdmi-codec: fix spelling mistake: "deteced" -> "detected"
@ 2017-05-14 16:53 Colin King
  2017-05-15  0:57 ` Kuninori Morimoto
  2017-05-17  9:52 ` Applied "ASoC: hdmi-codec: fix spelling mistake: "deteced" -> "detected"" to the asoc tree Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Colin King @ 2017-05-14 16:53 UTC (permalink / raw)
  To: Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai,
	Kuninori Morimoto, Vincent Abriou, Jon Medhurst,
	Arnaud Pouliquen, alsa-devel
  Cc: linux-kernel

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

Trivial fix to spelling mistake in dev_err message

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 sound/soc/codecs/hdmi-codec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/codecs/hdmi-codec.c b/sound/soc/codecs/hdmi-codec.c
index 8c5ae1fc23a9..a3f15149afcf 100644
--- a/sound/soc/codecs/hdmi-codec.c
+++ b/sound/soc/codecs/hdmi-codec.c
@@ -819,7 +819,7 @@ static int hdmi_codec_probe(struct platform_device *pdev)
 	mutex_unlock(&hdmi_mutex);
 
 	if (hd->cnt >= ARRAY_SIZE(hdmi_dai_name)) {
-		dev_err(dev, "too many hdmi codec are deteced\n");
+		dev_err(dev, "too many hdmi codec are detected\n");
 		return -EINVAL;
 	}
 
-- 
2.11.0

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

* Re: [PATCH] ASoC: hdmi-codec: fix spelling mistake: "deteced" -> "detected"
  2017-05-14 16:53 [PATCH] ASoC: hdmi-codec: fix spelling mistake: "deteced" -> "detected" Colin King
@ 2017-05-15  0:57 ` Kuninori Morimoto
  2017-05-17  9:52 ` Applied "ASoC: hdmi-codec: fix spelling mistake: "deteced" -> "detected"" to the asoc tree Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Kuninori Morimoto @ 2017-05-15  0:57 UTC (permalink / raw)
  To: Colin King
  Cc: Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai,
	Vincent Abriou, Jon Medhurst, Arnaud Pouliquen, alsa-devel,
	linux-kernel


Hi Colin
Cc Mark

> From: Colin Ian King <colin.king@canonical.com>
> 
> Trivial fix to spelling mistake in dev_err message
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  sound/soc/codecs/hdmi-codec.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/sound/soc/codecs/hdmi-codec.c b/sound/soc/codecs/hdmi-codec.c
> index 8c5ae1fc23a9..a3f15149afcf 100644
> --- a/sound/soc/codecs/hdmi-codec.c
> +++ b/sound/soc/codecs/hdmi-codec.c
> @@ -819,7 +819,7 @@ static int hdmi_codec_probe(struct platform_device *pdev)
>  	mutex_unlock(&hdmi_mutex);
>  
>  	if (hd->cnt >= ARRAY_SIZE(hdmi_dai_name)) {
> -		dev_err(dev, "too many hdmi codec are deteced\n");
> +		dev_err(dev, "too many hdmi codec are detected\n");
>  		return -EINVAL;
>  	}

Thank you for your patch.
Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

But, actually this feature (= detect many HDMI codec) is no longer needed.
And I will remove this feature soon.
The reason why I added this feature is that it was needed on previous synopsys
HDMI driver, but it exchanged probe style, so it is no longer needed.
And the reason why I didn't remove it until now is that it depends on OF-graph
sound card feature which was delayed by maintainer's review.

I can adjust (= remove feature patch) both with this patch / without this patch

Best regards
---
Kuninori Morimoto

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

* Applied "ASoC: hdmi-codec: fix spelling mistake: "deteced" -> "detected"" to the asoc tree
  2017-05-14 16:53 [PATCH] ASoC: hdmi-codec: fix spelling mistake: "deteced" -> "detected" Colin King
  2017-05-15  0:57 ` Kuninori Morimoto
@ 2017-05-17  9:52 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2017-05-17  9:52 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Kuninori Morimoto, Mark Brown, Liam Girdwood, Mark Brown,
	Jaroslav Kysela, Takashi Iwai, Kuninori Morimoto, Vincent Abriou,
	Jon Medhurst, Arnaud Pouliquen, alsa-devel, linux-kernel,
	alsa-devel

The patch

   ASoC: hdmi-codec: fix spelling mistake: "deteced" -> "detected"

has been applied to the asoc tree at

   git://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 0c343a35bfecdf26c7041781815f3b639a45d93a Mon Sep 17 00:00:00 2001
From: Colin Ian King <colin.king@canonical.com>
Date: Sun, 14 May 2017 17:53:21 +0100
Subject: [PATCH] ASoC: hdmi-codec: fix spelling mistake: "deteced" ->
 "detected"

Trivial fix to spelling mistake in dev_err message

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/codecs/hdmi-codec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/codecs/hdmi-codec.c b/sound/soc/codecs/hdmi-codec.c
index 8c5ae1fc23a9..a3f15149afcf 100644
--- a/sound/soc/codecs/hdmi-codec.c
+++ b/sound/soc/codecs/hdmi-codec.c
@@ -819,7 +819,7 @@ static int hdmi_codec_probe(struct platform_device *pdev)
 	mutex_unlock(&hdmi_mutex);
 
 	if (hd->cnt >= ARRAY_SIZE(hdmi_dai_name)) {
-		dev_err(dev, "too many hdmi codec are deteced\n");
+		dev_err(dev, "too many hdmi codec are detected\n");
 		return -EINVAL;
 	}
 
-- 
2.11.0

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

end of thread, other threads:[~2017-05-17  9:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-14 16:53 [PATCH] ASoC: hdmi-codec: fix spelling mistake: "deteced" -> "detected" Colin King
2017-05-15  0:57 ` Kuninori Morimoto
2017-05-17  9:52 ` Applied "ASoC: hdmi-codec: fix spelling mistake: "deteced" -> "detected"" 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;
as well as URLs for NNTP newsgroup(s).