Commit 3194e14d authored by Tina Johnson's avatar Tina Johnson Committed by Greg Kroah-Hartman

drivers: staging: iio: accel: Removed unnecessary variable

Variable len is used only to store the return value. Hence len is
removed and the return statement modified. Coccinelle was used to
detect such removable variables:

@rule1@
identifier ret;
expression e;
@@

-ret =
+return
           e;
-return ret;
Signed-off-by: default avatarTina Johnson <tinajohnson.1234@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 90a9de83
...@@ -870,7 +870,7 @@ static ssize_t sca3000_query_free_fall_mode(struct device *dev, ...@@ -870,7 +870,7 @@ static ssize_t sca3000_query_free_fall_mode(struct device *dev,
struct device_attribute *attr, struct device_attribute *attr,
char *buf) char *buf)
{ {
int ret, len; int ret;
struct iio_dev *indio_dev = dev_to_iio_dev(dev); struct iio_dev *indio_dev = dev_to_iio_dev(dev);
struct sca3000_state *st = iio_priv(indio_dev); struct sca3000_state *st = iio_priv(indio_dev);
int val; int val;
...@@ -881,9 +881,7 @@ static ssize_t sca3000_query_free_fall_mode(struct device *dev, ...@@ -881,9 +881,7 @@ static ssize_t sca3000_query_free_fall_mode(struct device *dev,
mutex_unlock(&st->lock); mutex_unlock(&st->lock);
if (ret < 0) if (ret < 0)
return ret; return ret;
len = sprintf(buf, "%d\n", return sprintf(buf, "%d\n", !!(val & SCA3000_FREE_FALL_DETECT));
!!(val & SCA3000_FREE_FALL_DETECT));
return len;
} }
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment