drivers/net : Correct the size argument to kzalloc
authorJulia Lawall <julia@diku.dk>
Tue, 29 Dec 2009 09:15:42 +0000 (09:15 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 4 Jan 2010 05:42:51 +0000 (21:42 -0800)
commit5d66fe92a19fb41373d13e75831169a6b5e5bef5
tree4a988fc18972b460f9410ec9e0600ef799d42963
parent52ee264bca378835decb827d18b1d90b709ca4c9
drivers/net : Correct the size argument to kzalloc

lp->rx_skb has type struct sk_buff **, not struct sk_buff *, so the
elements of the array should have pointer type, not structure type.

The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@disable sizeof_type_expr@
type T;
T **x;
@@

  x =
  <+...sizeof(
- T
+ *x
  )...+>
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ll_temac_main.c