Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 676f4a92 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Ingo Molnar
Browse files

x86: io-apic - use ARRAY_SIZE macro



Make the code width a bit shorter with ARRAY_SIZE macro.

Signed-off-by: default avatarCyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent b558cb35
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -166,7 +166,7 @@ static void __init init_work(void *data)

	memcpy(cfg, irq_cfg_legacy, sizeof(irq_cfg_legacy));

	legacy_count = sizeof(irq_cfg_legacy)/sizeof(irq_cfg_legacy[0]);
	legacy_count = ARRAY_SIZE(irq_cfg_legacy);
	for (i = legacy_count; i < *da->nr; i++)
		init_one_irq_cfg(&cfg[i]);