From dbf30678ee658fedca68a75277cd5c005d9833ef Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Sun, 21 Aug 2016 17:37:15 +0200 Subject: src/arch: Add required space before opening parenthesis '(' Change-Id: I8a44a58506d7cf5ebc9fe7ac4f2b46f9544ba61a Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/16287 Tested-by: build bot (Jenkins) Reviewed-by: Omar Pakker Reviewed-by: Martin Roth --- src/arch/x86/pirq_routing.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/arch/x86/pirq_routing.c') diff --git a/src/arch/x86/pirq_routing.c b/src/arch/x86/pirq_routing.c index 4d9311427c..f758dbb572 100644 --- a/src/arch/x86/pirq_routing.c +++ b/src/arch/x86/pirq_routing.c @@ -110,14 +110,14 @@ static u8 pirq_get_next_free_irq(u8* pirq, u16 bitmap) /* And assume we have not yet routed it */ int already_routed = 0; /* Have we already routed it ? */ - for(link = 0; link < CONFIG_MAX_PIRQ_LINKS; link++) { + for (link = 0; link < CONFIG_MAX_PIRQ_LINKS; link++) { if (pirq[link] == irq) { already_routed = 1; break; } } /* If it's not yet routed, use it */ - if(!already_routed) + if (!already_routed) break; /* But if it was already routed, try the next one */ continue; @@ -179,7 +179,7 @@ static void pirq_route_irqs(unsigned long addr) pirq_tbl->slots[i].devfn >> 3, irq_slot); } - for(i = 0; i < CONFIG_MAX_PIRQ_LINKS; i++) + for (i = 0; i < CONFIG_MAX_PIRQ_LINKS; i++) printk(BIOS_DEBUG, "PIRQ%c: %d\n", i + 'A', pirq[i]); pirq_assign_irqs(pirq); -- cgit v1.2.3