Re: [PATCH] ASoC: adi: Add missing return statement.

2015-01-05 Thread Mark Brown
On Wed, Dec 31, 2014 at 04:20:37PM +, Andrew Jackson wrote:
> From: Andrew Jackson 
> 
> The probe routine was disabling the clock even
> if the system was configured successfully.  Add
> a return statement to leave clocks enabled.

Applied, thanks.


signature.asc
Description: Digital signature


Re: [PATCH] ASoC: adi: Add missing return statement.

2015-01-05 Thread Mark Brown
On Wed, Dec 31, 2014 at 04:20:37PM +, Andrew Jackson wrote:
 From: Andrew Jackson andrew.jack...@arm.com
 
 The probe routine was disabling the clock even
 if the system was configured successfully.  Add
 a return statement to leave clocks enabled.

Applied, thanks.


signature.asc
Description: Digital signature


Re: [PATCH] ASoC: adi: Add missing return statement.

2014-12-31 Thread Lars-Peter Clausen

On 12/31/2014 05:20 PM, Andrew Jackson wrote:

From: Andrew Jackson 

The probe routine was disabling the clock even
if the system was configured successfully.  Add
a return statement to leave clocks enabled.

Signed-off-by: Andrew Jackson 


Acked-by: Lars-Peter Clausen 

Thanks, never noticed since the clock is shared with other peripherals.


---
Spotted while reviewing clock preparation

  sound/soc/adi/axi-i2s.c |2 ++
  1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/sound/soc/adi/axi-i2s.c b/sound/soc/adi/axi-i2s.c
index 7752860..4c23381 100644
--- a/sound/soc/adi/axi-i2s.c
+++ b/sound/soc/adi/axi-i2s.c
@@ -240,6 +240,8 @@ static int axi_i2s_probe(struct platform_device *pdev)
if (ret)
goto err_clk_disable;

+   return 0;
+
  err_clk_disable:
clk_disable_unprepare(i2s->clk);
return ret;



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] ASoC: adi: Add missing return statement.

2014-12-31 Thread Andrew Jackson
From: Andrew Jackson 

The probe routine was disabling the clock even
if the system was configured successfully.  Add
a return statement to leave clocks enabled.

Signed-off-by: Andrew Jackson 
---
Spotted while reviewing clock preparation

 sound/soc/adi/axi-i2s.c |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/sound/soc/adi/axi-i2s.c b/sound/soc/adi/axi-i2s.c
index 7752860..4c23381 100644
--- a/sound/soc/adi/axi-i2s.c
+++ b/sound/soc/adi/axi-i2s.c
@@ -240,6 +240,8 @@ static int axi_i2s_probe(struct platform_device *pdev)
if (ret)
goto err_clk_disable;
 
+   return 0;
+
 err_clk_disable:
clk_disable_unprepare(i2s->clk);
return ret;
-- 
1.7.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] ASoC: adi: Add missing return statement.

2014-12-31 Thread Andrew Jackson
From: Andrew Jackson andrew.jack...@arm.com

The probe routine was disabling the clock even
if the system was configured successfully.  Add
a return statement to leave clocks enabled.

Signed-off-by: Andrew Jackson andrew.jack...@arm.com
---
Spotted while reviewing clock preparation

 sound/soc/adi/axi-i2s.c |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/sound/soc/adi/axi-i2s.c b/sound/soc/adi/axi-i2s.c
index 7752860..4c23381 100644
--- a/sound/soc/adi/axi-i2s.c
+++ b/sound/soc/adi/axi-i2s.c
@@ -240,6 +240,8 @@ static int axi_i2s_probe(struct platform_device *pdev)
if (ret)
goto err_clk_disable;
 
+   return 0;
+
 err_clk_disable:
clk_disable_unprepare(i2s-clk);
return ret;
-- 
1.7.1

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] ASoC: adi: Add missing return statement.

2014-12-31 Thread Lars-Peter Clausen

On 12/31/2014 05:20 PM, Andrew Jackson wrote:

From: Andrew Jackson andrew.jack...@arm.com

The probe routine was disabling the clock even
if the system was configured successfully.  Add
a return statement to leave clocks enabled.

Signed-off-by: Andrew Jackson andrew.jack...@arm.com


Acked-by: Lars-Peter Clausen l...@metafoo.de

Thanks, never noticed since the clock is shared with other peripherals.


---
Spotted while reviewing clock preparation

  sound/soc/adi/axi-i2s.c |2 ++
  1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/sound/soc/adi/axi-i2s.c b/sound/soc/adi/axi-i2s.c
index 7752860..4c23381 100644
--- a/sound/soc/adi/axi-i2s.c
+++ b/sound/soc/adi/axi-i2s.c
@@ -240,6 +240,8 @@ static int axi_i2s_probe(struct platform_device *pdev)
if (ret)
goto err_clk_disable;

+   return 0;
+
  err_clk_disable:
clk_disable_unprepare(i2s-clk);
return ret;



--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/