]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
V4L/DVB: cx25821: fix coding style issues in cx25821-i2c.c
authorOlimpiu Pascariu <olimpiu.pascariu@gmail.com>
Sun, 21 Mar 2010 17:52:31 +0000 (14:52 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 18 May 2010 03:51:15 +0000 (00:51 -0300)
Fixes up warnings and errors found by the checkpatch.pl tool
on cx25821-i2c.c

Signed-off-by: Olimpiu Pascariu <olimpiu.pascariu@gmail.com>
Cc: Palash Bandyopadhyay <palash.bandyopadhyay@conexant.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/staging/cx25821/cx25821-i2c.c

index f4f2681d8f1c867a0f7a1d04e94f72d12209b073..f727b85743ac1e5220af98ffa0aca3f60a8c5f9c 100644 (file)
@@ -159,9 +159,9 @@ static int i2c_sendbytes(struct i2c_adapter *i2c_adap,
 
        return msg->len;
 
-      eio:
+eio:
        retval = -EIO;
-      err:
+err:
        if (i2c_debug)
                printk(KERN_ERR " ERR: %d\n", retval);
        return retval;
@@ -223,9 +223,9 @@ static int i2c_readbytes(struct i2c_adapter *i2c_adap,
        }
 
        return msg->len;
-      eio:
+eio:
        retval = -EIO;
-      err:
+err:
        if (i2c_debug)
                printk(KERN_ERR " ERR: %d\n", retval);
        return retval;
@@ -266,7 +266,7 @@ static int i2c_xfer(struct i2c_adapter *i2c_adap, struct i2c_msg *msgs, int num)
        }
        return num;
 
-      err:
+err:
        return retval;
 }
 
@@ -319,7 +319,7 @@ int cx25821_i2c_register(struct cx25821_i2c *bus)
 
        bus->i2c_client.adapter = &bus->i2c_adap;
 
-       //set up the I2c
+       /* set up the I2c */
        bus->i2c_client.addr = (0x88 >> 1);
 
        return bus->i2c_rc;