diff options
author | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2009-06-08 05:53:50 -0400 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2009-07-14 16:32:48 -0400 |
commit | 6b2b171a774af256082635b53ac387b1613b7b4c (patch) | |
tree | bb8c616668f6a5f199f2aba123d74bff9943c63f /arch | |
parent | 6847e154e3cd74fca6084124c097980a7634285a (diff) |
x86/acpi: acpi_parse_madt_ioapic_entries: remove redundant braces
We don't put braces around a single statement.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/acpi/boot.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index 6b8ca3a0285d..ce31c1af854f 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c | |||
@@ -1179,9 +1179,8 @@ static int __init acpi_parse_madt_ioapic_entries(void) | |||
1179 | * If MPS is present, it will handle them, | 1179 | * If MPS is present, it will handle them, |
1180 | * otherwise the system will stay in PIC mode | 1180 | * otherwise the system will stay in PIC mode |
1181 | */ | 1181 | */ |
1182 | if (acpi_disabled || acpi_noirq) { | 1182 | if (acpi_disabled || acpi_noirq) |
1183 | return -ENODEV; | 1183 | return -ENODEV; |
1184 | } | ||
1185 | 1184 | ||
1186 | if (!cpu_has_apic) | 1185 | if (!cpu_has_apic) |
1187 | return -ENODEV; | 1186 | return -ENODEV; |