summaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/acpi/boot.c
diff options
context:
space:
mode:
authorJeremy Fitzhardinge2009-06-08 11:53:50 +0200
committerJeremy Fitzhardinge2009-07-14 22:32:48 +0200
commit6b2b171a774af256082635b53ac387b1613b7b4c (patch)
treebb8c616668f6a5f199f2aba123d74bff9943c63f /arch/x86/kernel/acpi/boot.c
parentLinux 2.6.31-rc3 (diff)
downloadkernel-qcow2-linux-6b2b171a774af256082635b53ac387b1613b7b4c.tar.gz
kernel-qcow2-linux-6b2b171a774af256082635b53ac387b1613b7b4c.tar.xz
kernel-qcow2-linux-6b2b171a774af256082635b53ac387b1613b7b4c.zip
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/x86/kernel/acpi/boot.c')
-rw-r--r--arch/x86/kernel/acpi/boot.c3
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)
* 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;