Re: [PATCH] zorro: use ARRAY_SIZE

2014-06-23 Thread Geert Uytterhoeven
On Mon, Jun 16, 2014 at 10:10 PM, Himangi Saraogi wrote: > 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 Coccinelle semantic patch that makes this change is as follows: > > // > @@ > type T; > T[] E; >

Re: [PATCH] zorro: use ARRAY_SIZE

2014-06-23 Thread Geert Uytterhoeven
On Mon, Jun 16, 2014 at 10:10 PM, Himangi Saraogi himangi...@gmail.com wrote: 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 Coccinelle semantic patch that makes this change is as follows: // smpl @@ type

[PATCH] zorro: use ARRAY_SIZE

2014-06-16 Thread Himangi Saraogi
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 Coccinelle semantic patch that makes this change is as follows: // @@ type T; T[] E; @@ - (sizeof(E)/sizeof(T)) + ARRAY_SIZE(E) // Signed-off-by: Himangi

[PATCH] zorro: use ARRAY_SIZE

2014-06-16 Thread Himangi Saraogi
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 Coccinelle semantic patch that makes this change is as follows: // smpl @@ type T; T[] E; @@ - (sizeof(E)/sizeof(T)) + ARRAY_SIZE(E) // /smpl Signed-off-by: