diff options
author | Jiapeng Chong <jiapeng.chong@linux.alibaba.com> | 2023-12-08 03:17:15 +0100 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2023-12-11 20:16:35 +0100 |
commit | c95e0a719820054b28ef8687cc05b8deeb1c9106 (patch) | |
tree | 431db10e69a57e6dafcf1e0cb576d67775f31186 /drivers/iio | |
parent | iio: pressure: driver for Honeywell HSC/SSC series (diff) | |
download | linux-c95e0a719820054b28ef8687cc05b8deeb1c9106.tar.xz linux-c95e0a719820054b28ef8687cc05b8deeb1c9106.zip |
iio: light: isl76682: remove unreachable code
The function isl76682_read_raw cannot execute return -EINVAL up to 145
lines, delete the invalid code.
drivers/iio/light/isl76682.c:145 isl76682_read_raw() warn: ignoring unreachable code.
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=7698
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Link: https://lore.kernel.org/r/20231208021715.32450-1-jiapeng.chong@linux.alibaba.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio')
-rw-r--r-- | drivers/iio/light/isl76682.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/iio/light/isl76682.c b/drivers/iio/light/isl76682.c index 0a7c3b09c3c0..cf6ddee44ffc 100644 --- a/drivers/iio/light/isl76682.c +++ b/drivers/iio/light/isl76682.c @@ -142,7 +142,6 @@ static int isl76682_read_raw(struct iio_dev *indio_dev, default: return -EINVAL; } - return -EINVAL; case IIO_CHAN_INFO_SCALE: for (i = 0; i < ARRAY_SIZE(isl76682_range_table); i++) { if (chip->range != isl76682_range_table[i].range) |