]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
drivers/net/mv643xx_eth.c: Use FIELD_SIZEOF
authorJulia Lawall <julia@diku.dk>
Tue, 4 Mar 2008 23:19:19 +0000 (15:19 -0800)
committerJeff Garzik <jeff@garzik.org>
Wed, 26 Mar 2008 04:19:41 +0000 (00:19 -0400)
commit7a6d84c1b26fd8a1deb28a4bbed672959f7f26ae
treedbe209b8dee48a7c1aaff213300ed33078add94d
parentef11291bcd5f963c72e7ba5952be3e3c97463d2c
drivers/net/mv643xx_eth.c: Use FIELD_SIZEOF

Robert P.J. Day proposed to use the macro FIELD_SIZEOF in replace of code
that matches its definition.

The modification was made using the following semantic patch
(http://www.emn.fr/x-info/coccinelle/)

// <smpl>
@haskernel@
@@

#include <linux/kernel.h>

@depends on haskernel@
type t;
identifier f;
@@

- (sizeof(((t*)0)->f))
+ FIELD_SIZEOF(t, f)

@depends on haskernel@
type t;
identifier f;
@@

- sizeof(((t*)0)->f)
+ FIELD_SIZEOF(t, f)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
drivers/net/mv643xx_eth.c