commit | fc489a528728dcce38df10a74cc1539522b670e7 | [log] [tgz] |
---|---|---|
author | Mahati Chamarthy <mahati.chamarthy@gmail.com> | Mon Sep 22 23:04:13 2014 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Tue Sep 23 20:25:29 2014 -0700 |
tree | e8928b4884cbe2a2e1f54b721780d724bc4b901c | |
parent | 92db2a276c6ad8ded8e1fea2329d4d00394f5ad4 [diff] |
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 <mahati.chamarthy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>