From: Joe Perches Date: Mon, 13 Jun 2011 16:21:26 +0000 (+0000) Subject: net: Remove casts of void * X-Git-Tag: v3.1-rc1~316^2~433 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea110733874d5176cb56dcf612a629ffac09dbf0;p=pandora-kernel.git net: Remove casts of void * Unnecessary casts of void * clutter the code. These are the remainder casts after several specific patches to remove netdev_priv and dev_priv. Done via coccinelle script: $ cat cast_void_pointer.cocci @@ type T; T *pt; void *pv; @@ - pt = (T *)pv; + pt = pv; Signed-off-by: Joe Perches Acked-by: Paul Moore Signed-off-by: David S. Miller --- Reading git-diff-tree failed