All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] ASoC: rt5640: Remove unneeded goto in rt5640_i2c_probe
@ 2014-06-10  3:35 Axel Lin
  2014-06-10  3:36 ` [PATCH 2/3] ASoC: rt5645: Remove unneeded goto in rt5645_i2c_probe Axel Lin
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Axel Lin @ 2014-06-10  3:35 UTC (permalink / raw)
  To: Mark Brown; +Cc: Oder Chiou, alsa-devel, Liam Girdwood

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
 sound/soc/codecs/rt5640.c | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/sound/soc/codecs/rt5640.c b/sound/soc/codecs/rt5640.c
index de80e89..6bc6efd 100644
--- a/sound/soc/codecs/rt5640.c
+++ b/sound/soc/codecs/rt5640.c
@@ -2215,14 +2215,8 @@ static int rt5640_i2c_probe(struct i2c_client *i2c,
 
 	rt5640->hp_mute = 1;
 
-	ret = snd_soc_register_codec(&i2c->dev, &soc_codec_dev_rt5640,
-			rt5640_dai, ARRAY_SIZE(rt5640_dai));
-	if (ret < 0)
-		goto err;
-
-	return 0;
-err:
-	return ret;
+	return snd_soc_register_codec(&i2c->dev, &soc_codec_dev_rt5640,
+				      rt5640_dai, ARRAY_SIZE(rt5640_dai));
 }
 
 static int rt5640_i2c_remove(struct i2c_client *i2c)
-- 
1.8.3.2

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

* [PATCH 2/3] ASoC: rt5645: Remove unneeded goto in rt5645_i2c_probe
  2014-06-10  3:35 [PATCH 1/3] ASoC: rt5640: Remove unneeded goto in rt5640_i2c_probe Axel Lin
@ 2014-06-10  3:36 ` Axel Lin
  2014-06-21 10:31   ` Mark Brown
  2014-06-10  3:37 ` [PATCH 3/3] ASoC: rt5677: Remove unneeded goto in rt5677_i2c_probe Axel Lin
  2014-06-21 10:31 ` [PATCH 1/3] ASoC: rt5640: Remove unneeded goto in rt5640_i2c_probe Mark Brown
  2 siblings, 1 reply; 6+ messages in thread
From: Axel Lin @ 2014-06-10  3:36 UTC (permalink / raw)
  To: Mark Brown; +Cc: Oder Chiou, alsa-devel, Liam Girdwood

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
 sound/soc/codecs/rt5645.c | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/sound/soc/codecs/rt5645.c b/sound/soc/codecs/rt5645.c
index 02147be..a7762d0 100644
--- a/sound/soc/codecs/rt5645.c
+++ b/sound/soc/codecs/rt5645.c
@@ -2345,14 +2345,8 @@ static int rt5645_i2c_probe(struct i2c_client *i2c,
 
 	}
 
-	ret = snd_soc_register_codec(&i2c->dev, &soc_codec_dev_rt5645,
-			rt5645_dai, ARRAY_SIZE(rt5645_dai));
-	if (ret < 0)
-		goto err;
-
-	return 0;
-err:
-	return ret;
+	return snd_soc_register_codec(&i2c->dev, &soc_codec_dev_rt5645,
+				      rt5645_dai, ARRAY_SIZE(rt5645_dai));
 }
 
 static int rt5645_i2c_remove(struct i2c_client *i2c)
-- 
1.8.3.2

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

* [PATCH 3/3] ASoC: rt5677: Remove unneeded goto in rt5677_i2c_probe
  2014-06-10  3:35 [PATCH 1/3] ASoC: rt5640: Remove unneeded goto in rt5640_i2c_probe Axel Lin
  2014-06-10  3:36 ` [PATCH 2/3] ASoC: rt5645: Remove unneeded goto in rt5645_i2c_probe Axel Lin
@ 2014-06-10  3:37 ` Axel Lin
  2014-06-21 10:32   ` Mark Brown
  2014-06-21 10:31 ` [PATCH 1/3] ASoC: rt5640: Remove unneeded goto in rt5640_i2c_probe Mark Brown
  2 siblings, 1 reply; 6+ messages in thread
From: Axel Lin @ 2014-06-10  3:37 UTC (permalink / raw)
  To: Mark Brown; +Cc: Oder Chiou, alsa-devel, Liam Girdwood

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
 sound/soc/codecs/rt5677.c | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/sound/soc/codecs/rt5677.c b/sound/soc/codecs/rt5677.c
index e7c401f..43c82cd 100644
--- a/sound/soc/codecs/rt5677.c
+++ b/sound/soc/codecs/rt5677.c
@@ -3373,14 +3373,8 @@ static int rt5677_i2c_probe(struct i2c_client *i2c,
 		regmap_update_bits(rt5677->regmap, RT5677_IN1,
 					RT5677_IN_DF2, RT5677_IN_DF2);
 
-	ret = snd_soc_register_codec(&i2c->dev, &soc_codec_dev_rt5677,
-			rt5677_dai, ARRAY_SIZE(rt5677_dai));
-	if (ret < 0)
-		goto err;
-
-	return 0;
-err:
-	return ret;
+	return snd_soc_register_codec(&i2c->dev, &soc_codec_dev_rt5677,
+				      rt5677_dai, ARRAY_SIZE(rt5677_dai));
 }
 
 static int rt5677_i2c_remove(struct i2c_client *i2c)
-- 
1.8.3.2

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

* Re: [PATCH 1/3] ASoC: rt5640: Remove unneeded goto in rt5640_i2c_probe
  2014-06-10  3:35 [PATCH 1/3] ASoC: rt5640: Remove unneeded goto in rt5640_i2c_probe Axel Lin
  2014-06-10  3:36 ` [PATCH 2/3] ASoC: rt5645: Remove unneeded goto in rt5645_i2c_probe Axel Lin
  2014-06-10  3:37 ` [PATCH 3/3] ASoC: rt5677: Remove unneeded goto in rt5677_i2c_probe Axel Lin
@ 2014-06-21 10:31 ` Mark Brown
  2 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2014-06-21 10:31 UTC (permalink / raw)
  To: Axel Lin; +Cc: Oder Chiou, alsa-devel, Liam Girdwood


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

On Tue, Jun 10, 2014 at 11:35:56AM +0800, Axel Lin wrote:
> Signed-off-by: Axel Lin <axel.lin@ingics.com>

Applied, thanks.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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



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

* Re: [PATCH 2/3] ASoC: rt5645: Remove unneeded goto in rt5645_i2c_probe
  2014-06-10  3:36 ` [PATCH 2/3] ASoC: rt5645: Remove unneeded goto in rt5645_i2c_probe Axel Lin
@ 2014-06-21 10:31   ` Mark Brown
  0 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2014-06-21 10:31 UTC (permalink / raw)
  To: Axel Lin; +Cc: Oder Chiou, alsa-devel, Liam Girdwood


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

On Tue, Jun 10, 2014 at 11:36:41AM +0800, Axel Lin wrote:
> Signed-off-by: Axel Lin <axel.lin@ingics.com>

Applied, thanks.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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



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

* Re: [PATCH 3/3] ASoC: rt5677: Remove unneeded goto in rt5677_i2c_probe
  2014-06-10  3:37 ` [PATCH 3/3] ASoC: rt5677: Remove unneeded goto in rt5677_i2c_probe Axel Lin
@ 2014-06-21 10:32   ` Mark Brown
  0 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2014-06-21 10:32 UTC (permalink / raw)
  To: Axel Lin; +Cc: Oder Chiou, alsa-devel, Liam Girdwood


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

On Tue, Jun 10, 2014 at 11:37:24AM +0800, Axel Lin wrote:
> Signed-off-by: Axel Lin <axel.lin@ingics.com>

Applied, thanks.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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



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

end of thread, other threads:[~2014-06-21 10:32 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-10  3:35 [PATCH 1/3] ASoC: rt5640: Remove unneeded goto in rt5640_i2c_probe Axel Lin
2014-06-10  3:36 ` [PATCH 2/3] ASoC: rt5645: Remove unneeded goto in rt5645_i2c_probe Axel Lin
2014-06-21 10:31   ` Mark Brown
2014-06-10  3:37 ` [PATCH 3/3] ASoC: rt5677: Remove unneeded goto in rt5677_i2c_probe Axel Lin
2014-06-21 10:32   ` Mark Brown
2014-06-21 10:31 ` [PATCH 1/3] ASoC: rt5640: Remove unneeded goto in rt5640_i2c_probe Mark Brown

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.