From: Julia Lawall Date: Sun, 9 Nov 2008 16:56:34 +0000 (+0100) Subject: Staging: wlan-ng: p80211wext.c: use ARRAY_SIZE X-Git-Tag: v2.6.29-rc1~228^2~155 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ba8aa7a94c5f3f5ac41ba39be5b1abf1688565e;p=pandora-kernel.git 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/) // @i@ @@ #include @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) // Signed-off-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed