From: Tina Johnson Date: Mon, 9 Mar 2015 10:41:19 +0000 (+0530) Subject: drivers: staging: iio: meter: Removed unnecessary variable X-Git-Tag: omap-for-v4.1/fixes-rc1~165^2~138^2~504 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07f83131e5b5d309dc8dd41911b66d3ce4c99323;p=pandora-kernel.git drivers: staging: iio: meter: Removed unnecessary variable Variable ret is used only to store the return value. Hence ret 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 Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed