commit | 3194e14db920138f4a0a19a03cb4c26db9969445 | [log] [tgz] |
---|---|---|
author | Tina Johnson <tinajohnson.1234@gmail.com> | Mon Mar 09 16:11:16 2015 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Mar 09 13:39:10 2015 +0100 |
tree | 2c8b75f43c662a62a97a5be3c69a618d8ac121a6 | |
parent | 90a9de83578fb7890a2f5a96dd393621f165ba5a [diff] |
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: Tina Johnson <tinajohnson.1234@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>