staging: lustre: lmv: drop trivially useless initialization
authorJulia Lawall <Julia.Lawall@lip6.fr>
Sat, 20 Jun 2015 19:07:51 +0000 (21:07 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 14 Jul 2015 02:37:04 +0000 (19:37 -0700)
commita84b7fd5f7539a1eca943a17ba9d7cafc10f3f90
treefb4897c1e4e7c4484586c6fc6160d7fef8f183ba
parent53a0d4868703c5d5d5dc0d0eaf9166d6bba9a697
staging: lustre: lmv: 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>
drivers/staging/lustre/lustre/lmv/lmv_obd.c