From: Mahati Chamarthy Date: Mon, 22 Sep 2014 17:34:13 +0000 (+0530) Subject: Staging: vme: devices: Merges two lines of code and removes unused variable X-Git-Tag: fixes-for-v3.18-merge-window~15^2~234 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc489a528728dcce38df10a74cc1539522b670e7;p=pandora-kernel.git Staging: vme: devices: Merges two lines of code and removes unused variable This patch merges an assignment with an immediately following return of the assigned variable. The following Coccinelle semantic patch was used to make this transformation: @@ expression ret; identifier f; @@ -ret = +return f(...); -return ret; Signed-off-by: Mahati Chamarthy Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed