Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/x86/x86 I guess people still attach com & lpt to is...
details: https://anonhg.NetBSD.org/src/rev/3c5548f1d232
branches: trunk
changeset: 757263:3c5548f1d232
user: jmcneill <jmcneill%NetBSD.org@localhost>
date: Sat Aug 21 17:27:20 2010 +0000
description:
I guess people still attach com & lpt to isa, so don't skip legacy devices.
diffstat:
sys/arch/x86/x86/x86_autoconf.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diffs (32 lines):
diff -r 9d8f58e79eec -r 3c5548f1d232 sys/arch/x86/x86/x86_autoconf.c
--- a/sys/arch/x86/x86/x86_autoconf.c Sat Aug 21 17:10:03 2010 +0000
+++ b/sys/arch/x86/x86/x86_autoconf.c Sat Aug 21 17:27:20 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: x86_autoconf.c,v 1.51 2010/08/21 17:10:03 jmcneill Exp $ */
+/* $NetBSD: x86_autoconf.c,v 1.52 2010/08/21 17:27:20 jmcneill Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: x86_autoconf.c,v 1.51 2010/08/21 17:10:03 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: x86_autoconf.c,v 1.52 2010/08/21 17:27:20 jmcneill Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -624,11 +624,13 @@
#endif /* NPCI > 0 */
}
#if NISA > 0 && NACPICA > 0
+#if notyet
if (device_is_a(dev, "isa") && acpi_active) {
if (!(AcpiGbl_FADT.BootFlags & ACPI_FADT_LEGACY_DEVICES))
prop_dictionary_set_bool(device_properties(dev),
"no-legacy-devices", true);
}
+#endif
#endif /* NISA > 0 && NACPICA > 0 */
#if NPCI > 0
if (device_parent(dev) && device_is_a(device_parent(dev), "pci") &&
Home |
Main Index |
Thread Index |
Old Index