]> pilppa.org Git - linux-2.6-omap-h63xx.git/commit
Staging: wlan-ng: p80211wext.c: use ARRAY_SIZE
authorJulia Lawall <julia@diku.dk>
Sun, 9 Nov 2008 16:56:34 +0000 (17:56 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 6 Jan 2009 21:52:01 +0000 (13:52 -0800)
commit9ba8aa7a94c5f3f5ac41ba39be5b1abf1688565e
treef456a730af73ac8ccebb2a16cbc45a958d462c6a
parentd11e5f22ac9330ebe8f6157395a1a55645064322
Staging: wlan-ng: p80211wext.c: use ARRAY_SIZE

ARRAY_SIZE is more concise to use when the size of an array is divided by
the size of its type or the size of its first element.

The semantic patch that makes this change is as follows:
(http://www.emn.fr/x-info/coccinelle/)

// <smpl>
@i@
@@

#include <linux/kernel.h>

@depends on i using "paren.iso"@
type T;
T[] E;
@@

- (sizeof(E)/sizeof(E[...]))
+ ARRAY_SIZE(E)

@depends on i using "paren.iso"@
type T;
T[] E;
@@

- (sizeof(E)/sizeof(T))
+ ARRAY_SIZE(E)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/wlan-ng/p80211wext.c