Skip to content

Commit

Permalink
x86/acpi: acpi_parse_madt_ioapic_entries: remove redundant braces
Browse files Browse the repository at this point in the history
We don't put braces around a single statement.

Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
  • Loading branch information
Jeremy Fitzhardinge committed Jul 14, 2009
1 parent 6847e15 commit 6b2b171
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions arch/x86/kernel/acpi/boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -1179,9 +1179,8 @@ static int __init acpi_parse_madt_ioapic_entries(void)
* If MPS is present, it will handle them,
* otherwise the system will stay in PIC mode
*/
if (acpi_disabled || acpi_noirq) {
if (acpi_disabled || acpi_noirq)
return -ENODEV;
}

if (!cpu_has_apic)
return -ENODEV;
Expand Down

0 comments on commit 6b2b171

Please sign in to comment.