Tag: 8986992de4225871d171e8bdd82abd0eeab978ff

carl9170: Remove casts of pointer to same type

Author: Joe Perches <joe@perches.com> 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 Signed-off-by: John W. Linville — drivers/net/wireless/ath/carl9170/rx.c | 2 +- 1 file changed, 1 …

Continue reading