Commit e98d75d1 authored by David Mosberger's avatar David Mosberger

ia64: Don't mix code and declarations (not C90-compliant).

parent e413aad5
...@@ -327,9 +327,11 @@ setup_arch (char **cmdline_p) ...@@ -327,9 +327,11 @@ setup_arch (char **cmdline_p)
* because we don't *really* know whether there's anything there, but we hope that * because we don't *really* know whether there's anything there, but we hope that
* all new boxes will implement HCDP. * all new boxes will implement HCDP.
*/ */
extern unsigned char acpi_legacy_devices; {
if (!efi.hcdp && acpi_legacy_devices) extern unsigned char acpi_legacy_devices;
setup_serial_legacy(); if (!efi.hcdp && acpi_legacy_devices)
setup_serial_legacy();
}
#endif #endif
#ifdef CONFIG_VT #ifdef CONFIG_VT
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment