commit | f82ced5d6bce6cd0719e95f744bfeb8f81677790 | [log] [tgz] |
---|---|---|
author | Julia Lawall <Julia.Lawall@lip6.fr> | Sat Jun 20 21:07:50 2015 +0200 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Jul 13 19:37:04 2015 -0700 |
tree | 9f771a9c5dd0517c60ec7b2838cee4cb41a88a09 | |
parent | 597851ac2ae4e3857f2ab410adb0775951a09fa0 [diff] |
staging: lustre: llite: drop trivially useless initialization Remove initialization of a variable that is immediately reassigned. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ type T; identifier x; constant C; expression e; @@ T x - = C ; x = e; // </smpl> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>