From: Julia Lawall Date: Sun, 29 Mar 2015 12:54:12 +0000 (+0200) Subject: staging: rtl8712: Drop unneeded cast on netdev_priv X-Git-Tag: omap-for-v4.1/fixes-rc1~165^2~34 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f47c28b5a0346728259291d9e4a1de90a5d3624;p=pandora-kernel.git staging: rtl8712: Drop unneeded cast on netdev_priv The result of netdev_priv is already implicitly cast to the type of the left side of the assignment. The semantic patch that fixes this problem is as follows: (http://coccinelle.lip6.fr/) // @@ type T; T *x; @@ x = - (T *) netdev_priv(...) // Signed-off-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed