From: Julia Lawall Date: Sun, 11 Aug 2013 16:51:56 +0000 (+0200) Subject: arch/arm/mach-kirkwood: Avoid using ARRAY_AND_SIZE(e) as a function argument X-Git-Tag: v3.12-rc1~114^2~4^2~4 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4ada24bd606516ee04a892164deb8c80d2b9be9;p=pandora-kernel.git arch/arm/mach-kirkwood: Avoid using ARRAY_AND_SIZE(e) as a function argument Replace ARRAY_AND_SIZE(e) in function argument position to avoid hiding the arity of the called function. The semantic match that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ expression e,f; @@ f(..., - ARRAY_AND_SIZE(e) + e,ARRAY_SIZE(e) ,...) // Signed-off-by: Julia Lawall Signed-off-by: Jason Cooper --- Reading git-diff-tree failed