]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
[media] cx23885: Remove unused 'err:' labels to quiet compiler warning
authorAndy Walls <awalls@md.metrocast.net>
Mon, 14 Feb 2011 01:01:38 +0000 (22:01 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Wed, 2 Mar 2011 16:45:27 +0000 (13:45 -0300)
The previous revert-commit, that affected cx23885-i2c.c, left some
unused labels that the compiler griped about.  Clean them up.

Signed-off-by: Andy Walls <awalls@md.metrocast.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/cx23885/cx23885-i2c.c

index 1007f80bd7c16aae4cd42451730d840c41ecaad1..307ff543c2543ba75251121411ca05f59e868d69 100644 (file)
@@ -154,7 +154,6 @@ static int i2c_sendbytes(struct i2c_adapter *i2c_adap,
 
  eio:
        retval = -EIO;
- err:
        if (i2c_debug)
                printk(KERN_ERR " ERR: %d\n", retval);
        return retval;
@@ -216,7 +215,6 @@ static int i2c_readbytes(struct i2c_adapter *i2c_adap,
 
  eio:
        retval = -EIO;
- err:
        if (i2c_debug)
                printk(KERN_ERR " ERR: %d\n", retval);
        return retval;