diff options
author | Julia Lawall <julia@diku.dk> | 2009-12-29 09:15:42 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-01-03 21:42:51 -0800 |
commit | 5d66fe92a19fb41373d13e75831169a6b5e5bef5 (patch) | |
tree | 4a988fc18972b460f9410ec9e0600ef799d42963 /drivers/net/3c527.c | |
parent | 52ee264bca378835decb827d18b1d90b709ca4c9 (diff) |
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>
Diffstat (limited to 'drivers/net/3c527.c')
0 files changed, 0 insertions, 0 deletions