mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 20:10:50 +07:00
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/) // <smpl> @@ expression e,f; @@ f(..., - ARRAY_AND_SIZE(e) + e,ARRAY_SIZE(e) ,...) // </smpl> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Jason Cooper <jason@lakedaemon.net>
This commit is contained in:
parent
d04d97c264
commit
f4ada24bd6
@ -158,7 +158,8 @@ static void __init openrd_init(void)
|
||||
kirkwood_mpp_conf(openrd_mpp_config);
|
||||
|
||||
kirkwood_uart0_init();
|
||||
kirkwood_nand_init(ARRAY_AND_SIZE(openrd_nand_parts), 25);
|
||||
kirkwood_nand_init(openrd_nand_parts, ARRAY_SIZE(openrd_nand_parts),
|
||||
25);
|
||||
|
||||
kirkwood_ehci_init();
|
||||
|
||||
|
@ -87,7 +87,9 @@ static void __init rd88f6281_init(void)
|
||||
kirkwood_init();
|
||||
kirkwood_mpp_conf(rd88f6281_mpp_config);
|
||||
|
||||
kirkwood_nand_init(ARRAY_AND_SIZE(rd88f6281_nand_parts), 25);
|
||||
kirkwood_nand_init(rd88f6281_nand_parts,
|
||||
ARRAY_SIZE(rd88f6281_nand_parts),
|
||||
25);
|
||||
kirkwood_ehci_init();
|
||||
|
||||
kirkwood_ge00_init(&rd88f6281_ge00_data);
|
||||
|
Loading…
Reference in New Issue
Block a user