[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1376239917-15594-9-git-send-email-Julia.Lawall@lip6.fr>
Date: Sun, 11 Aug 2013 18:51:49 +0200
From: Julia Lawall <Julia.Lawall@...6.fr>
To: Sergey Lapin <slapin@...fans.org>
Cc: kernel-janitors@...r.kernel.org, Eric Miao <eric.y.miao@...il.com>,
Russell King <linux@....linux.org.uk>,
Haojian Zhuang <haojian.zhuang@...il.com>,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org
Subject: [PATCH 8/16] arch/arm/mach-pxa/palmz72.c: Avoid using ARRAY_AND_SIZE(e) as a function argument
From: Julia Lawall <Julia.Lawall@...6.fr>
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/)
// <smpl>
@@
expression e,f;
@@
f(...,
- ARRAY_AND_SIZE(e)
+ e,ARRAY_SIZE(e)
,...)
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@...6.fr>
---
Not compiled.
arch/arm/mach-pxa/palmz72.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/arch/arm/mach-pxa/palmz72.c b/arch/arm/mach-pxa/palmz72.c
index 1a35ddf..5f8fd00 100644
--- a/arch/arm/mach-pxa/palmz72.c
+++ b/arch/arm/mach-pxa/palmz72.c
@@ -356,9 +356,11 @@ static inline void __init palmz72_cam_gpio_init(void)
{
int ret;
- ret = gpio_request_array(ARRAY_AND_SIZE(palmz72_camera_gpios));
+ ret = gpio_request_array(palmz72_camera_gpios,
+ ARRAY_SIZE(palmz72_camera_gpios));
if (!ret)
- gpio_free_array(ARRAY_AND_SIZE(palmz72_camera_gpios));
+ gpio_free_array(palmz72_camera_gpios,
+ ARRAY_SIZE(palmz72_camera_gpios));
else
printk(KERN_ERR "Camera GPIO init failed!\n");
@@ -381,7 +383,7 @@ static inline void palmz72_camera_init(void) {}
******************************************************************************/
static void __init palmz72_init(void)
{
- pxa2xx_mfp_config(ARRAY_AND_SIZE(palmz72_pin_config));
+ pxa2xx_mfp_config(palmz72_pin_config, ARRAY_SIZE(palmz72_pin_config));
pxa_set_ffuart_info(NULL);
pxa_set_btuart_info(NULL);
pxa_set_stuart_info(NULL);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists