Staging: lustre: Unnecessory else and braces are removed
authorVaishali Thakkar <vthakkar1994@gmail.com>
Tue, 23 Sep 2014 13:51:32 +0000 (19:21 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 23 Sep 2014 15:18:59 +0000 (08:18 -0700)
commit2d02b0b81c0474212310c5a72cf088736c9aab41
tree5d1bd2ccf0dd68fdff7b13f140762d76d1c706e9
parent5ce91a9e854aba900a5bcddcd1c2297d7ff5cd40
Staging: lustre: Unnecessory else and braces are removed

This patch fixes following checkpatch.pl warning using coccinelle:

WARNING: else is not generally useful after a break or return

Semantic patch used for this is as follows:

@rule1@
expression e1;
@@

        if (e1) { ... return ...; }
-       else{
                ...
-       }

@rule2@
expression e2;
statement s1;
@@

        if(e2) { ... return ...; }
-       else
                s1

Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/obdclass/capa.c