Re: [PATCH -next] soundwire: Fix typo in return value check of sdw_read()

2018-01-02 Thread Vinod Koul
On Tue, Jan 02, 2018 at 04:08:19AM +, Wei Yongjun wrote:
> Fix the typo, 'status' should be instead of 'status2'.
> 
> Fixes: b0a9c37b0178 ("soundwire: Add slave status handling")
> Signed-off-by: Wei Yongjun 

Applied, thanks

-- 
~Vinod


Re: [PATCH -next] soundwire: Fix typo in return value check of sdw_read()

2018-01-02 Thread Vinod Koul
On Tue, Jan 02, 2018 at 04:08:19AM +, Wei Yongjun wrote:
> Fix the typo, 'status' should be instead of 'status2'.
> 
> Fixes: b0a9c37b0178 ("soundwire: Add slave status handling")
> Signed-off-by: Wei Yongjun 

Applied, thanks

-- 
~Vinod


Re: [alsa-devel] [PATCH -next] soundwire: Fix typo in return value check of sdw_read()

2018-01-02 Thread Pierre-Louis Bossart

On 1/1/18 10:08 PM, Wei Yongjun wrote:

Fix the typo, 'status' should be instead of 'status2'.


well spotted, thanks!

Acked-by: Pierre-Louis Bossart 



Fixes: b0a9c37b0178 ("soundwire: Add slave status handling")
Signed-off-by: Wei Yongjun 
---
  drivers/soundwire/bus.c | 10 +-
  1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/soundwire/bus.c b/drivers/soundwire/bus.c
index 4c34519..266d2b3 100644
--- a/drivers/soundwire/bus.c
+++ b/drivers/soundwire/bus.c
@@ -671,8 +671,8 @@ static int sdw_handle_dp0_interrupt(struct sdw_slave 
*slave, u8 *slave_status)
status2 = sdw_read(slave, SDW_DP0_INT);
if (status2 < 0) {
dev_err(slave->bus->dev,
-   "SDW_DP0_INT read failed:%d", status);
-   return status;
+   "SDW_DP0_INT read failed:%d", status2);
+   return status2;
}
status &= status2;
  
@@ -741,10 +741,10 @@ static int sdw_handle_port_interrupt(struct sdw_slave *slave,
  
  		/* Read DPN interrupt again */

status2 = sdw_read(slave, addr);
-   if (status < 0) {
+   if (status2 < 0) {
dev_err(slave->bus->dev,
-   "SDW_DPN_INT read failed:%d", status);
-   return status;
+   "SDW_DPN_INT read failed:%d", status2);
+   return status2;
}
status &= status2;

___
Alsa-devel mailing list
alsa-de...@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel





Re: [alsa-devel] [PATCH -next] soundwire: Fix typo in return value check of sdw_read()

2018-01-02 Thread Pierre-Louis Bossart

On 1/1/18 10:08 PM, Wei Yongjun wrote:

Fix the typo, 'status' should be instead of 'status2'.


well spotted, thanks!

Acked-by: Pierre-Louis Bossart 



Fixes: b0a9c37b0178 ("soundwire: Add slave status handling")
Signed-off-by: Wei Yongjun 
---
  drivers/soundwire/bus.c | 10 +-
  1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/soundwire/bus.c b/drivers/soundwire/bus.c
index 4c34519..266d2b3 100644
--- a/drivers/soundwire/bus.c
+++ b/drivers/soundwire/bus.c
@@ -671,8 +671,8 @@ static int sdw_handle_dp0_interrupt(struct sdw_slave 
*slave, u8 *slave_status)
status2 = sdw_read(slave, SDW_DP0_INT);
if (status2 < 0) {
dev_err(slave->bus->dev,
-   "SDW_DP0_INT read failed:%d", status);
-   return status;
+   "SDW_DP0_INT read failed:%d", status2);
+   return status2;
}
status &= status2;
  
@@ -741,10 +741,10 @@ static int sdw_handle_port_interrupt(struct sdw_slave *slave,
  
  		/* Read DPN interrupt again */

status2 = sdw_read(slave, addr);
-   if (status < 0) {
+   if (status2 < 0) {
dev_err(slave->bus->dev,
-   "SDW_DPN_INT read failed:%d", status);
-   return status;
+   "SDW_DPN_INT read failed:%d", status2);
+   return status2;
}
status &= status2;

___
Alsa-devel mailing list
alsa-de...@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel





[PATCH -next] soundwire: Fix typo in return value check of sdw_read()

2018-01-01 Thread Wei Yongjun
Fix the typo, 'status' should be instead of 'status2'.

Fixes: b0a9c37b0178 ("soundwire: Add slave status handling")
Signed-off-by: Wei Yongjun 
---
 drivers/soundwire/bus.c | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/soundwire/bus.c b/drivers/soundwire/bus.c
index 4c34519..266d2b3 100644
--- a/drivers/soundwire/bus.c
+++ b/drivers/soundwire/bus.c
@@ -671,8 +671,8 @@ static int sdw_handle_dp0_interrupt(struct sdw_slave 
*slave, u8 *slave_status)
status2 = sdw_read(slave, SDW_DP0_INT);
if (status2 < 0) {
dev_err(slave->bus->dev,
-   "SDW_DP0_INT read failed:%d", status);
-   return status;
+   "SDW_DP0_INT read failed:%d", status2);
+   return status2;
}
status &= status2;
 
@@ -741,10 +741,10 @@ static int sdw_handle_port_interrupt(struct sdw_slave 
*slave,
 
/* Read DPN interrupt again */
status2 = sdw_read(slave, addr);
-   if (status < 0) {
+   if (status2 < 0) {
dev_err(slave->bus->dev,
-   "SDW_DPN_INT read failed:%d", status);
-   return status;
+   "SDW_DPN_INT read failed:%d", status2);
+   return status2;
}
status &= status2;



[PATCH -next] soundwire: Fix typo in return value check of sdw_read()

2018-01-01 Thread Wei Yongjun
Fix the typo, 'status' should be instead of 'status2'.

Fixes: b0a9c37b0178 ("soundwire: Add slave status handling")
Signed-off-by: Wei Yongjun 
---
 drivers/soundwire/bus.c | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/soundwire/bus.c b/drivers/soundwire/bus.c
index 4c34519..266d2b3 100644
--- a/drivers/soundwire/bus.c
+++ b/drivers/soundwire/bus.c
@@ -671,8 +671,8 @@ static int sdw_handle_dp0_interrupt(struct sdw_slave 
*slave, u8 *slave_status)
status2 = sdw_read(slave, SDW_DP0_INT);
if (status2 < 0) {
dev_err(slave->bus->dev,
-   "SDW_DP0_INT read failed:%d", status);
-   return status;
+   "SDW_DP0_INT read failed:%d", status2);
+   return status2;
}
status &= status2;
 
@@ -741,10 +741,10 @@ static int sdw_handle_port_interrupt(struct sdw_slave 
*slave,
 
/* Read DPN interrupt again */
status2 = sdw_read(slave, addr);
-   if (status < 0) {
+   if (status2 < 0) {
dev_err(slave->bus->dev,
-   "SDW_DPN_INT read failed:%d", status);
-   return status;
+   "SDW_DPN_INT read failed:%d", status2);
+   return status2;
}
status &= status2;