[PATCH 3/6] drivers/net/niu.c: adjust array index
David Miller
davem at davemloft.net
Mon Aug 1 19:27:59 EST 2011
From: Julia Lawall <julia at diku.dk>
Date: Thu, 28 Jul 2011 14:46:03 +0200
> From: Julia Lawall <julia at diku.dk>
>
> Convert array index from the loop bound to the loop index.
>
> A simplified version of the semantic patch that fixes this problem is as
> follows: (http://coccinelle.lip6.fr/)
>
> // <smpl>
> @@
> expression e1,e2,ar;
> @@
>
> for(e1 = 0; e1 < e2; e1++) { <...
> ar[
> - e2
> + e1
> ]
> ...> }
> // </smpl>
>
> Signed-off-by: Julia Lawall <julia at diku.dk>
Applied.
More information about the devicetree-discuss
mailing list