remarkable-linux/drivers/staging/i4l
sayli karnik cd9ae9e4db staging: i4l: act2000: Move assignment out of if statement
This patch places assignments which are inside the if condition, above it.
Done using coccinelle:

@@
statement s;
expression e;
identifier id;
@@
- if ((id = e))
+ id = e;
+ if (id)
        s

Signed-off-by: sayli karnik <karniksayli1995@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2016-09-20 13:46:32 +02:00
..
act2000 staging: i4l: act2000: Move assignment out of if statement 2016-09-20 13:46:32 +02:00
Documentation
icn staging: i4l: icn: fix incorrect type of arguments 2016-08-31 09:24:41 +02:00
pcbit staging: i4l: Reformat braces around else 2016-08-21 17:23:18 +02:00
Kconfig
Makefile
TODO