All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()
@ 2018-12-21  9:11 ` Dan Carpenter
  0 siblings, 0 replies; 14+ messages in thread
From: Dan Carpenter @ 2018-12-21  9:11 UTC (permalink / raw)
  To: Liam Girdwood
  Cc: alsa-devel, Kuninori Morimoto, kernel-janitors, Takashi Iwai,
	Dimitris Papavasiliou, Mark Brown

We accidentally call mutex_unlock(&pcm512x->mutex); twice in a row.

I re-wrote the error handling to use "goto unlock;" instead of returning
directly.  Hopefully, it makes the code a little simpler.

Fixes: 3500f1c589e9 ("ASoC: pcm512x: Implement the digital_mute interface")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
 sound/soc/codecs/pcm512x.c | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/sound/soc/codecs/pcm512x.c b/sound/soc/codecs/pcm512x.c
index 6cb1653be804..4cc24a5d5c31 100644
--- a/sound/soc/codecs/pcm512x.c
+++ b/sound/soc/codecs/pcm512x.c
@@ -1400,24 +1400,20 @@ static int pcm512x_digital_mute(struct snd_soc_dai *dai, int mute)
 		if (ret != 0) {
 			dev_err(component->dev,
 				"Failed to set digital mute: %d\n", ret);
-			mutex_unlock(&pcm512x->mutex);
-			return ret;
+			goto unlock;
 		}
 
 		regmap_read_poll_timeout(pcm512x->regmap,
 					 PCM512x_ANALOG_MUTE_DET,
 					 mute_det, (mute_det & 0x3) = 0,
 					 200, 10000);
-
-		mutex_unlock(&pcm512x->mutex);
 	} else {
 		pcm512x->mute &= ~0x1;
 		ret = pcm512x_update_mute(pcm512x);
 		if (ret != 0) {
 			dev_err(component->dev,
 				"Failed to update digital mute: %d\n", ret);
-			mutex_unlock(&pcm512x->mutex);
-			return ret;
+			goto unlock;
 		}
 
 		regmap_read_poll_timeout(pcm512x->regmap,
@@ -1428,9 +1424,10 @@ static int pcm512x_digital_mute(struct snd_soc_dai *dai, int mute)
 					 200, 10000);
 	}
 
+unlock:
 	mutex_unlock(&pcm512x->mutex);
 
-	return 0;
+	return ret;
 }
 
 static const struct snd_soc_dai_ops pcm512x_dai_ops = {
-- 
2.17.1

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

* [PATCH] ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()
@ 2018-12-21  9:11 ` Dan Carpenter
  0 siblings, 0 replies; 14+ messages in thread
From: Dan Carpenter @ 2018-12-21  9:11 UTC (permalink / raw)
  To: Liam Girdwood
  Cc: alsa-devel, Kuninori Morimoto, kernel-janitors, Takashi Iwai,
	Dimitris Papavasiliou, Mark Brown

We accidentally call mutex_unlock(&pcm512x->mutex); twice in a row.

I re-wrote the error handling to use "goto unlock;" instead of returning
directly.  Hopefully, it makes the code a little simpler.

Fixes: 3500f1c589e9 ("ASoC: pcm512x: Implement the digital_mute interface")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
 sound/soc/codecs/pcm512x.c | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/sound/soc/codecs/pcm512x.c b/sound/soc/codecs/pcm512x.c
index 6cb1653be804..4cc24a5d5c31 100644
--- a/sound/soc/codecs/pcm512x.c
+++ b/sound/soc/codecs/pcm512x.c
@@ -1400,24 +1400,20 @@ static int pcm512x_digital_mute(struct snd_soc_dai *dai, int mute)
 		if (ret != 0) {
 			dev_err(component->dev,
 				"Failed to set digital mute: %d\n", ret);
-			mutex_unlock(&pcm512x->mutex);
-			return ret;
+			goto unlock;
 		}
 
 		regmap_read_poll_timeout(pcm512x->regmap,
 					 PCM512x_ANALOG_MUTE_DET,
 					 mute_det, (mute_det & 0x3) == 0,
 					 200, 10000);
-
-		mutex_unlock(&pcm512x->mutex);
 	} else {
 		pcm512x->mute &= ~0x1;
 		ret = pcm512x_update_mute(pcm512x);
 		if (ret != 0) {
 			dev_err(component->dev,
 				"Failed to update digital mute: %d\n", ret);
-			mutex_unlock(&pcm512x->mutex);
-			return ret;
+			goto unlock;
 		}
 
 		regmap_read_poll_timeout(pcm512x->regmap,
@@ -1428,9 +1424,10 @@ static int pcm512x_digital_mute(struct snd_soc_dai *dai, int mute)
 					 200, 10000);
 	}
 
+unlock:
 	mutex_unlock(&pcm512x->mutex);
 
-	return 0;
+	return ret;
 }
 
 static const struct snd_soc_dai_ops pcm512x_dai_ops = {
-- 
2.17.1

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

* Re: [PATCH] ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()
  2018-12-21  9:11 ` Dan Carpenter
@ 2018-12-21 11:23   ` Dimitris Papavasiliou
  -1 siblings, 0 replies; 14+ messages in thread
From: Dimitris Papavasiliou @ 2018-12-21 11:23 UTC (permalink / raw)
  To: Dan Carpenter, Liam Girdwood
  Cc: alsa-devel, Kuninori Morimoto, kernel-janitors, Takashi Iwai, Mark Brown

On 12/21/18 11:11 AM, Dan Carpenter wrote:
> We accidentally call mutex_unlock(&pcm512x->mutex); twice in a row.

Ooops...  Looks like I left a spare unlock in there.  Thanks for
catching and fixing it!

Maintainers, please let me know if there's anything I need to do
with respect to this.

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

* Re: [PATCH] ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()
@ 2018-12-21 11:23   ` Dimitris Papavasiliou
  0 siblings, 0 replies; 14+ messages in thread
From: Dimitris Papavasiliou @ 2018-12-21 11:23 UTC (permalink / raw)
  To: Dan Carpenter, Liam Girdwood
  Cc: alsa-devel, Kuninori Morimoto, kernel-janitors, Takashi Iwai, Mark Brown

On 12/21/18 11:11 AM, Dan Carpenter wrote:
> We accidentally call mutex_unlock(&pcm512x->mutex); twice in a row.

Ooops...  Looks like I left a spare unlock in there.  Thanks for
catching and fixing it!

Maintainers, please let me know if there's anything I need to do
with respect to this.

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

* Re: [PATCH] ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()
  2018-12-21 11:23   ` Dimitris Papavasiliou
@ 2018-12-21 12:00     ` Dan Carpenter
  -1 siblings, 0 replies; 14+ messages in thread
From: Dan Carpenter @ 2018-12-21 12:00 UTC (permalink / raw)
  To: Dimitris Papavasiliou
  Cc: alsa-devel, Kuninori Morimoto, kernel-janitors, Takashi Iwai,
	Liam Girdwood, Mark Brown

On Fri, Dec 21, 2018 at 01:23:37PM +0200, Dimitris Papavasiliou wrote:
> On 12/21/18 11:11 AM, Dan Carpenter wrote:
> > We accidentally call mutex_unlock(&pcm512x->mutex); twice in a row.
> 
> Ooops...  Looks like I left a spare unlock in there.  Thanks for
> catching and fixing it!

Static analysis stuff...  No big deal.

> 
> Maintainers, please let me know if there's anything I need to do
> with respect to this.

All you need to is reply with a reviewed-by tag so we can mark on the
fix that you approved it.

Reviewed-by: Your Name <email>

regards,
dan carpenter

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

* Re: [PATCH] ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()
@ 2018-12-21 12:00     ` Dan Carpenter
  0 siblings, 0 replies; 14+ messages in thread
From: Dan Carpenter @ 2018-12-21 12:00 UTC (permalink / raw)
  To: Dimitris Papavasiliou
  Cc: alsa-devel, Kuninori Morimoto, kernel-janitors, Takashi Iwai,
	Liam Girdwood, Mark Brown

On Fri, Dec 21, 2018 at 01:23:37PM +0200, Dimitris Papavasiliou wrote:
> On 12/21/18 11:11 AM, Dan Carpenter wrote:
> > We accidentally call mutex_unlock(&pcm512x->mutex); twice in a row.
> 
> Ooops...  Looks like I left a spare unlock in there.  Thanks for
> catching and fixing it!

Static analysis stuff...  No big deal.

> 
> Maintainers, please let me know if there's anything I need to do
> with respect to this.

All you need to is reply with a reviewed-by tag so we can mark on the
fix that you approved it.

Reviewed-by: Your Name <email>

regards,
dan carpenter

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

* Re: [PATCH] ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()
  2018-12-21 12:00     ` Dan Carpenter
@ 2018-12-21 12:10       ` Mark Brown
  -1 siblings, 0 replies; 14+ messages in thread
From: Mark Brown @ 2018-12-21 12:10 UTC (permalink / raw)
  To: Dan Carpenter
  Cc: alsa-devel, Kuninori Morimoto, Liam Girdwood, kernel-janitors,
	Takashi Iwai, Dimitris Papavasiliou

[-- Attachment #1: Type: text/plain, Size: 508 bytes --]

On Fri, Dec 21, 2018 at 03:00:56PM +0300, Dan Carpenter wrote:
> On Fri, Dec 21, 2018 at 01:23:37PM +0200, Dimitris Papavasiliou wrote:

> > Maintainers, please let me know if there's anything I need to do
> > with respect to this.

> All you need to is reply with a reviewed-by tag so we can mark on the
> fix that you approved it.

> Reviewed-by: Your Name <email>

I've just gone and applied the tag but yeah, what Dan says - there's
tools that can pick tags like this out of e-mail which is also useful.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH] ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()
@ 2018-12-21 12:10       ` Mark Brown
  0 siblings, 0 replies; 14+ messages in thread
From: Mark Brown @ 2018-12-21 12:10 UTC (permalink / raw)
  To: Dan Carpenter
  Cc: alsa-devel, Kuninori Morimoto, Liam Girdwood, kernel-janitors,
	Takashi Iwai, Dimitris Papavasiliou


[-- Attachment #1.1: Type: text/plain, Size: 508 bytes --]

On Fri, Dec 21, 2018 at 03:00:56PM +0300, Dan Carpenter wrote:
> On Fri, Dec 21, 2018 at 01:23:37PM +0200, Dimitris Papavasiliou wrote:

> > Maintainers, please let me know if there's anything I need to do
> > with respect to this.

> All you need to is reply with a reviewed-by tag so we can mark on the
> fix that you approved it.

> Reviewed-by: Your Name <email>

I've just gone and applied the tag but yeah, what Dan says - there's
tools that can pick tags like this out of e-mail which is also useful.

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



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

* Applied "ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()" to the asoc tree
  2018-12-21  9:11 ` Dan Carpenter
@ 2018-12-21 13:42   ` Mark Brown
  -1 siblings, 0 replies; 14+ messages in thread
From: Mark Brown @ 2018-12-21 13:42 UTC (permalink / raw)
  To: Dan Carpenter
  Cc: alsa-devel, Kuninori Morimoto, Takashi Iwai, kernel-janitors,
	Liam Girdwood, Dimitris Papavasiliou, Mark Brown

The patch

   ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()

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 35c299625b68369518bf45f99b8052ec2394d10e Mon Sep 17 00:00:00 2001
From: Dan Carpenter <dan.carpenter@oracle.com>
Date: Fri, 21 Dec 2018 12:11:20 +0300
Subject: [PATCH] ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()

We accidentally call mutex_unlock(&pcm512x->mutex); twice in a row.

I re-wrote the error handling to use "goto unlock;" instead of returning
directly.  Hopefully, it makes the code a little simpler.

Fixes: 3500f1c589e9 ("ASoC: pcm512x: Implement the digital_mute interface")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviwed-by: Dimitris Papavasiliou <dpapavas@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/codecs/pcm512x.c | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/sound/soc/codecs/pcm512x.c b/sound/soc/codecs/pcm512x.c
index 6cb1653be804..4cc24a5d5c31 100644
--- a/sound/soc/codecs/pcm512x.c
+++ b/sound/soc/codecs/pcm512x.c
@@ -1400,24 +1400,20 @@ static int pcm512x_digital_mute(struct snd_soc_dai *dai, int mute)
 		if (ret != 0) {
 			dev_err(component->dev,
 				"Failed to set digital mute: %d\n", ret);
-			mutex_unlock(&pcm512x->mutex);
-			return ret;
+			goto unlock;
 		}
 
 		regmap_read_poll_timeout(pcm512x->regmap,
 					 PCM512x_ANALOG_MUTE_DET,
 					 mute_det, (mute_det & 0x3) = 0,
 					 200, 10000);
-
-		mutex_unlock(&pcm512x->mutex);
 	} else {
 		pcm512x->mute &= ~0x1;
 		ret = pcm512x_update_mute(pcm512x);
 		if (ret != 0) {
 			dev_err(component->dev,
 				"Failed to update digital mute: %d\n", ret);
-			mutex_unlock(&pcm512x->mutex);
-			return ret;
+			goto unlock;
 		}
 
 		regmap_read_poll_timeout(pcm512x->regmap,
@@ -1428,9 +1424,10 @@ static int pcm512x_digital_mute(struct snd_soc_dai *dai, int mute)
 					 200, 10000);
 	}
 
+unlock:
 	mutex_unlock(&pcm512x->mutex);
 
-	return 0;
+	return ret;
 }
 
 static const struct snd_soc_dai_ops pcm512x_dai_ops = {
-- 
2.20.1

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

* Applied "ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()" to the asoc tree
@ 2018-12-21 13:42   ` Mark Brown
  0 siblings, 0 replies; 14+ messages in thread
From: Mark Brown @ 2018-12-21 13:42 UTC (permalink / raw)
  To: Dan Carpenter
  Cc: alsa-devel, Kuninori Morimoto, Takashi Iwai, kernel-janitors,
	Liam Girdwood, Dimitris Papavasiliou, Mark Brown

The patch

   ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()

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 35c299625b68369518bf45f99b8052ec2394d10e Mon Sep 17 00:00:00 2001
From: Dan Carpenter <dan.carpenter@oracle.com>
Date: Fri, 21 Dec 2018 12:11:20 +0300
Subject: [PATCH] ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()

We accidentally call mutex_unlock(&pcm512x->mutex); twice in a row.

I re-wrote the error handling to use "goto unlock;" instead of returning
directly.  Hopefully, it makes the code a little simpler.

Fixes: 3500f1c589e9 ("ASoC: pcm512x: Implement the digital_mute interface")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviwed-by: Dimitris Papavasiliou <dpapavas@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/codecs/pcm512x.c | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/sound/soc/codecs/pcm512x.c b/sound/soc/codecs/pcm512x.c
index 6cb1653be804..4cc24a5d5c31 100644
--- a/sound/soc/codecs/pcm512x.c
+++ b/sound/soc/codecs/pcm512x.c
@@ -1400,24 +1400,20 @@ static int pcm512x_digital_mute(struct snd_soc_dai *dai, int mute)
 		if (ret != 0) {
 			dev_err(component->dev,
 				"Failed to set digital mute: %d\n", ret);
-			mutex_unlock(&pcm512x->mutex);
-			return ret;
+			goto unlock;
 		}
 
 		regmap_read_poll_timeout(pcm512x->regmap,
 					 PCM512x_ANALOG_MUTE_DET,
 					 mute_det, (mute_det & 0x3) == 0,
 					 200, 10000);
-
-		mutex_unlock(&pcm512x->mutex);
 	} else {
 		pcm512x->mute &= ~0x1;
 		ret = pcm512x_update_mute(pcm512x);
 		if (ret != 0) {
 			dev_err(component->dev,
 				"Failed to update digital mute: %d\n", ret);
-			mutex_unlock(&pcm512x->mutex);
-			return ret;
+			goto unlock;
 		}
 
 		regmap_read_poll_timeout(pcm512x->regmap,
@@ -1428,9 +1424,10 @@ static int pcm512x_digital_mute(struct snd_soc_dai *dai, int mute)
 					 200, 10000);
 	}
 
+unlock:
 	mutex_unlock(&pcm512x->mutex);
 
-	return 0;
+	return ret;
 }
 
 static const struct snd_soc_dai_ops pcm512x_dai_ops = {
-- 
2.20.1

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

* Re: [PATCH] ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()
  2018-12-21  9:11 ` Dan Carpenter
@ 2018-12-21 13:51   ` Dimitris Papavasiliou
  -1 siblings, 0 replies; 14+ messages in thread
From: Dimitris Papavasiliou @ 2018-12-21 13:51 UTC (permalink / raw)
  To: Dan Carpenter, Liam Girdwood
  Cc: alsa-devel, Kuninori Morimoto, kernel-janitors, Takashi Iwai, Mark Brown

On 12/21/18 11:11 AM, Dan Carpenter wrote:
> We accidentally call mutex_unlock(&pcm512x->mutex); twice in a row.
> 
> I re-wrote the error handling to use "goto unlock;" instead of returning
> directly.  Hopefully, it makes the code a little simpler.
> 
> Fixes: 3500f1c589e9 ("ASoC: pcm512x: Implement the digital_mute interface")
> Signed-off-by: Dan Carpenter<dan.carpenter@oracle.com>
> ---
>   sound/soc/codecs/pcm512x.c | 11 ++++-------
>   1 file changed, 4 insertions(+), 7 deletions(-)

Reviewed-by: Dimitris Papavasiliou <dpapavas@gmail.com>

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

* Re: [PATCH] ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()
@ 2018-12-21 13:51   ` Dimitris Papavasiliou
  0 siblings, 0 replies; 14+ messages in thread
From: Dimitris Papavasiliou @ 2018-12-21 13:51 UTC (permalink / raw)
  To: Dan Carpenter, Liam Girdwood
  Cc: alsa-devel, Kuninori Morimoto, kernel-janitors, Takashi Iwai, Mark Brown

On 12/21/18 11:11 AM, Dan Carpenter wrote:
> We accidentally call mutex_unlock(&pcm512x->mutex); twice in a row.
> 
> I re-wrote the error handling to use "goto unlock;" instead of returning
> directly.  Hopefully, it makes the code a little simpler.
> 
> Fixes: 3500f1c589e9 ("ASoC: pcm512x: Implement the digital_mute interface")
> Signed-off-by: Dan Carpenter<dan.carpenter@oracle.com>
> ---
>   sound/soc/codecs/pcm512x.c | 11 ++++-------
>   1 file changed, 4 insertions(+), 7 deletions(-)

Reviewed-by: Dimitris Papavasiliou <dpapavas@gmail.com>

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

* Re: [PATCH] ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()
  2018-12-21 12:10       ` Mark Brown
@ 2018-12-21 13:54         ` Dimitris Papavasiliou
  -1 siblings, 0 replies; 14+ messages in thread
From: Dimitris Papavasiliou @ 2018-12-21 13:54 UTC (permalink / raw)
  To: Mark Brown, Dan Carpenter
  Cc: alsa-devel, Kuninori Morimoto, kernel-janitors, Takashi Iwai,
	Liam Girdwood

On 12/21/18 2:10 PM, Mark Brown wrote:
> On Fri, Dec 21, 2018 at 03:00:56PM +0300, Dan Carpenter wrote:
>> On Fri, Dec 21, 2018 at 01:23:37PM +0200, Dimitris Papavasiliou wrote:
> 
>>> Maintainers, please let me know if there's anything I need to do
>>> with respect to this.
> 
>> All you need to is reply with a reviewed-by tag so we can mark on the
>> fix that you approved it.
> 
>> Reviewed-by: Your Name <email>
> 
> I've just gone and applied the tag but yeah, what Dan says - there's
> tools that can pick tags like this out of e-mail which is also useful.

Thanks to both, but Mark, I'm afraid you've misspelled "Reviewed" in
the patch you applied.

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

* Re: [PATCH] ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()
@ 2018-12-21 13:54         ` Dimitris Papavasiliou
  0 siblings, 0 replies; 14+ messages in thread
From: Dimitris Papavasiliou @ 2018-12-21 13:54 UTC (permalink / raw)
  To: Mark Brown, Dan Carpenter
  Cc: alsa-devel, Kuninori Morimoto, kernel-janitors, Takashi Iwai,
	Liam Girdwood

On 12/21/18 2:10 PM, Mark Brown wrote:
> On Fri, Dec 21, 2018 at 03:00:56PM +0300, Dan Carpenter wrote:
>> On Fri, Dec 21, 2018 at 01:23:37PM +0200, Dimitris Papavasiliou wrote:
> 
>>> Maintainers, please let me know if there's anything I need to do
>>> with respect to this.
> 
>> All you need to is reply with a reviewed-by tag so we can mark on the
>> fix that you approved it.
> 
>> Reviewed-by: Your Name <email>
> 
> I've just gone and applied the tag but yeah, what Dan says - there's
> tools that can pick tags like this out of e-mail which is also useful.

Thanks to both, but Mark, I'm afraid you've misspelled "Reviewed" in
the patch you applied.

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

end of thread, other threads:[~2018-12-21 13:54 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-21  9:11 [PATCH] ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute() Dan Carpenter
2018-12-21  9:11 ` Dan Carpenter
2018-12-21 11:23 ` Dimitris Papavasiliou
2018-12-21 11:23   ` Dimitris Papavasiliou
2018-12-21 12:00   ` Dan Carpenter
2018-12-21 12:00     ` Dan Carpenter
2018-12-21 12:10     ` Mark Brown
2018-12-21 12:10       ` Mark Brown
2018-12-21 13:54       ` Dimitris Papavasiliou
2018-12-21 13:54         ` Dimitris Papavasiliou
2018-12-21 13:42 ` Applied "ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute()" to the asoc tree Mark Brown
2018-12-21 13:42   ` Mark Brown
2018-12-21 13:51 ` [PATCH] ASoC: pcm512x: Fix a double unlock in pcm512x_digital_mute() Dimitris Papavasiliou
2018-12-21 13:51   ` Dimitris Papavasiliou

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.