aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/kernel/io_apic.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/x86/kernel/io_apic.c b/arch/x86/kernel/io_apic.c
index 4cc9cb64c811..ed68a6f99dc2 100644
--- a/arch/x86/kernel/io_apic.c
+++ b/arch/x86/kernel/io_apic.c
@@ -830,9 +830,8 @@ int save_mask_IO_APIC_setup(void)
830 return 0; 830 return 0;
831 831
832nomem: 832nomem:
833 for (; apic > 0; apic--) 833 while (apic >= 0)
834 kfree(early_ioapic_entries[apic]); 834 kfree(early_ioapic_entries[apic--]);
835 kfree(early_ioapic_entries[apic]);
836 memset(early_ioapic_entries, 0, 835 memset(early_ioapic_entries, 0,
837 ARRAY_SIZE(early_ioapic_entries)); 836 ARRAY_SIZE(early_ioapic_entries));
838 837