summaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-08-04 16:58:13 +0200
committerAngel Pons <th3fanbus@gmail.com>2020-08-06 11:22:11 +0000
commitfc24da940dfe3d02c49d0612c5ac42a2cea1590f (patch)
treebc013cd7ef5da0e6596f55f754797fe3c771b4cf /src/arch
parentb5f9e5ce83d9a7a20a885d43331d8f5406158c17 (diff)
downloadcoreboot-fc24da940dfe3d02c49d0612c5ac42a2cea1590f.tar.xz
arch/x86/pirq_routing.c: Drop unneeded `continue`
Change-Id: I714247da261d4dd1b6a722436d71404f9862e958 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/44178 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/x86/pirq_routing.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/arch/x86/pirq_routing.c b/src/arch/x86/pirq_routing.c
index 18a36cd3d1..71d47d5ccb 100644
--- a/src/arch/x86/pirq_routing.c
+++ b/src/arch/x86/pirq_routing.c
@@ -106,8 +106,6 @@ static u8 pirq_get_next_free_irq(u8 *pirq, u16 bitmap)
/* If it's not yet routed, use it */
if (!already_routed)
break;
- /* But if it was already routed, try the next one */
- continue;
}
/* Now we got our IRQ */
return irq;