]> git.hungrycats.org Git - linux/commitdiff
[PATCH] ia64: Fix early serial console setup regression on the IBM x450 and x455
authorGary Hade <garyhade@us.ibm.com>
Fri, 4 Jun 2004 09:11:10 +0000 (02:11 -0700)
committerDavid Mosberger <davidm@tiger.hpl.hp.com>
Fri, 4 Jun 2004 09:11:10 +0000 (02:11 -0700)
This patch removes the ACPI LEGACY_DEVICES IA-PC boot architecture
flag as a condition for early serial console setup.  This flag may not
be set on some systems (e.g. IBM x450 and x455) where early serial
console setup is possible.

Signed-off-by: Gary Hade <garyhade@us.ibm.com>
Signed-off-by: David Mosberger <davidm@hpl.hp.com>
arch/ia64/kernel/setup.c

index 41177a9e9ac06749db9ab450f6999dfbee7a2301..9dc6fd35306ae8996914f2477ea062991564d11b 100644 (file)
@@ -330,16 +330,9 @@ setup_arch (char **cmdline_p)
                setup_serial_hcdp(efi.hcdp);
        }
 #endif
-       /*
-        * Without HCDP, we won't discover any serial ports until the serial driver looks
-        * in the ACPI namespace.  If ACPI claims there are some legacy devices, register
-        * the legacy COM ports so serial console works earlier.  This is slightly dangerous
-        * because we don't *really* know whether there's anything there, but we hope that
-        * all new boxes will implement HCDP.
-        */
        {
                extern unsigned char acpi_legacy_devices;
-               if (!efi.hcdp && acpi_legacy_devices)
+               if (!efi.hcdp)
                        setup_serial_legacy();
        }
 #endif