I am ok with the changes.

Signed-off-by: Srinivasa Deevi <srinivasa.de...@conexant.com>

Sri

-----Original Message-----
From: Dan Carpenter [mailto:erro...@gmail.com] 
Sent: Thursday, December 23, 2010 11:39 AM
To: Sri Deevi
Cc: 'Andy Walls'; linux-media@vger.kernel.org; mche...@infradead.org
Subject: [patch] [media] cx231xxx: fix typo in saddr_len check

The original code compared "saddr_len" with zero twice in a nonsensical
way.  I asked the list, and Andy Walls and Sri Deevi say that the second
check should be if "saddr_len == 1".

Signed-off-by: Dan Carpenter <erro...@gmail.com>

diff --git a/drivers/media/video/cx231xx/cx231xx-core.c 
b/drivers/media/video/cx231xx/cx231xx-core.c
index 44d124c..7d62d58 100644
--- a/drivers/media/video/cx231xx/cx231xx-core.c
+++ b/drivers/media/video/cx231xx/cx231xx-core.c
@@ -1515,7 +1515,7 @@ int cx231xx_read_i2c_master(struct cx231xx *dev, u8 
dev_addr, u16 saddr,
 
        if (saddr_len == 0)
                saddr = 0;
-       else if (saddr_len == 0)
+       else if (saddr_len == 1)
                saddr &= 0xff;
 
        /* prepare xfer_data struct */
@@ -1566,7 +1566,7 @@ int cx231xx_write_i2c_master(struct cx231xx *dev, u8 
dev_addr, u16 saddr,
 
        if (saddr_len == 0)
                saddr = 0;
-       else if (saddr_len == 0)
+       else if (saddr_len == 1)
                saddr &= 0xff;
 
        /* prepare xfer_data struct */
@@ -1600,7 +1600,7 @@ int cx231xx_read_i2c_data(struct cx231xx *dev, u8 
dev_addr, u16 saddr,
 
        if (saddr_len == 0)
                saddr = 0;
-       else if (saddr_len == 0)
+       else if (saddr_len == 1)
                saddr &= 0xff;
 
        /* prepare xfer_data struct */
@@ -1641,7 +1641,7 @@ int cx231xx_write_i2c_data(struct cx231xx *dev, u8 
dev_addr, u16 saddr,
 
        if (saddr_len == 0)
                saddr = 0;
-       else if (saddr_len == 0)
+       else if (saddr_len == 1)
                saddr &= 0xff;
 
        /* prepare xfer_data struct */

Conexant E-mail Firewall (Conexant.Com) made the following annotations
---------------------------------------------------------------------
********************** Legal Disclaimer **************************** 

"This email may contain confidential and privileged material for the sole use 
of the intended recipient. Any unauthorized review, use or distribution by 
others is strictly prohibited. If you have received the message in error, 
please advise the sender by reply email and delete the message. Thank you." 

********************************************************************** 

---------------------------------------------------------------------

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

Reply via email to