This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/cgit.cgi/media_tree.git tree:

Subject: [media] m88ts2022: Nested loops shouldn't use the same index variable
Author:  David Howells <[email protected]>
Date:    Fri Mar 20 10:37:38 2015 -0300

There are a pair of nested loops inside m88ts2022_cmd() that use the same
index variable, but for different things.  Split the variable.

Signed-off-by: David Howells <[email protected]>
Signed-off-by: Antti Palosaari <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>

 drivers/media/tuners/m88ts2022.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

---

http://git.linuxtv.org/cgit.cgi/media_tree.git/commit/?id=67e6590aa9384f87492e20f78a5943718baa695b

diff --git a/drivers/media/tuners/m88ts2022.c b/drivers/media/tuners/m88ts2022.c
index 066e543..cdf9fe5 100644
--- a/drivers/media/tuners/m88ts2022.c
+++ b/drivers/media/tuners/m88ts2022.c
@@ -21,7 +21,7 @@
 static int m88ts2022_cmd(struct m88ts2022_dev *dev, int op, int sleep, u8 reg,
                u8 mask, u8 val, u8 *reg_val)
 {
-       int ret, i;
+       int ret, i, j;
        unsigned int utmp;
        struct m88ts2022_reg_val reg_vals[] = {
                {0x51, 0x1f - op},
@@ -35,9 +35,9 @@ static int m88ts2022_cmd(struct m88ts2022_dev *dev, int op, 
int sleep, u8 reg,
                                "i=%d op=%02x reg=%02x mask=%02x val=%02x\n",
                                i, op, reg, mask, val);
 
-               for (i = 0; i < ARRAY_SIZE(reg_vals); i++) {
-                       ret = regmap_write(dev->regmap, reg_vals[i].reg,
-                                       reg_vals[i].val);
+               for (j = 0; j < ARRAY_SIZE(reg_vals); j++) {
+                       ret = regmap_write(dev->regmap, reg_vals[j].reg,
+                                       reg_vals[j].val);
                        if (ret)
                                goto err;
                }

_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to