From: Julia Lawall Date: Sat, 15 Feb 2014 07:36:11 +0000 (+0100) Subject: staging: r8712u: delete unnecessary field initialization X-Git-Tag: v3.15-rc1~139^2~1049 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4bb101d4f21be51e0f10ca71440e34858ce7b827;p=pandora-kernel.git staging: r8712u: delete unnecessary field initialization On success, the function netdev_alloc_skb initializes the dev field of its result to its first argument, so this doesn't have to be done in the calling context. The semantic patch that fixes this problem is as follows: (http://coccinelle.lip6.fr/) // @@ expression skb,privn,e; @@ skb = netdev_alloc_skb(privn,...); ... when strict ( -skb->dev = privn; | ?skb = e ) // Signed-off-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed