Joe Perches 8986992de4 carl9170: Remove casts of pointer to same type
Casting a pointer to a pointer of the same type is pointless,
so remove these unnecessary casts.

Done via coccinelle script:

$ cat typecast_2.cocci
@@
type T;
T *foo;
@@

-	(T *)foo
+	foo

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2014-03-27 14:20:05 -04:00
..
2014-02-04 15:30:07 -05:00
2014-03-17 13:44:16 -04:00
2014-03-17 13:13:06 -04:00
2013-01-14 11:32:44 +01:00