staging: iio: tsl2x7x_core: Remove redundant break
authorSachin Kamat <sachin.kamat@linaro.org>
Wed, 11 Sep 2013 10:20:00 +0000 (11:20 +0100)
committerJonathan Cameron <jic23@kernel.org>
Sat, 14 Sep 2013 10:37:02 +0000 (11:37 +0100)
'break' after return is redundant. Remove it.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/staging/iio/light/tsl2x7x_core.c

index 3439d378efbfc6fee8e78f8a6d0885a9a4c72409..9c43dcf444c2245cb526cc78b7a3524a6cfdb0dd 100644 (file)
@@ -951,7 +951,6 @@ static ssize_t tsl2x7x_gain_available_show(struct device *dev,
        case tsl2771:
        case tmd2771:
                return snprintf(buf, PAGE_SIZE, "%s\n", "1 8 16 128");
-       break;
        }
 
        return snprintf(buf, PAGE_SIZE, "%s\n", "1 8 16 120");
@@ -1346,7 +1345,6 @@ static int tsl2x7x_read_raw(struct iio_dev *indio_dev,
                        break;
                default:
                        return -EINVAL;
-                       break;
                }
                break;
        case IIO_CHAN_INFO_RAW:
@@ -1366,7 +1364,6 @@ static int tsl2x7x_read_raw(struct iio_dev *indio_dev,
                        break;
                default:
                        return -EINVAL;
-                       break;
                }
                break;
        case IIO_CHAN_INFO_CALIBSCALE:
@@ -1419,7 +1416,6 @@ static int tsl2x7x_write_raw(struct iio_dev *indio_dev,
                                case tsl2772:
                                case tmd2772:
                                        return -EINVAL;
-                               break;
                                }
                                chip->tsl2x7x_settings.als_gain = 3;
                                break;
@@ -1431,7 +1427,6 @@ static int tsl2x7x_write_raw(struct iio_dev *indio_dev,
                                case tsl2771:
                                case tmd2771:
                                        return -EINVAL;
-                               break;
                                }
                                chip->tsl2x7x_settings.als_gain = 3;
                                break;
@@ -1508,18 +1503,15 @@ static int tsl2x7x_device_id(unsigned char *id, int target)
        case tsl2671:
        case tsl2771:
                return ((*id & 0xf0) == TRITON_ID);
-       break;
        case tmd2671:
        case tmd2771:
                return ((*id & 0xf0) == HALIBUT_ID);
-       break;
        case tsl2572:
        case tsl2672:
        case tmd2672:
        case tsl2772:
        case tmd2772:
                return ((*id & 0xf0) == SWORDFISH_ID);
-       break;
        }
 
        return -EINVAL;
This page took 0.025658 seconds and 5 git commands to generate.