From: Joe Perches Date: Mon, 24 Mar 2014 20:15:39 +0000 (-0700) Subject: mwifiex: Remove casts of pointer to same type X-Git-Tag: v3.15-rc1~113^2~18^2^2~35 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=45d18c562adefe9d807c0ba833affdeff68bad98;p=pandora-kernel.git mwifiex: 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 Acked-by: Bing Zhao Signed-off-by: John W. Linville --- Reading git-diff-tree failed