Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Sep 2002 23:07:53 -0700 (PDT)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 18157 for review
Message-ID:  <200209260607.g8Q67rXA080347@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=18157

Change 18157 by peter@peter_daintree on 2002/09/25 23:07:05

	merge nexus.c changes to legacy.c.  While this is temporary,
	acpica is a variable that I just do not want to deal with yet.

Affected files ...

.. //depot/projects/hammer/sys/x86_64/x86_64/legacy.c#2 edit

Differences ...

==== //depot/projects/hammer/sys/x86_64/x86_64/legacy.c#2 (text+ko) ====

@@ -127,21 +127,9 @@
 	bus_generic_attach(dev);
 
 	/*
-	 * If we didn't see EISA or ISA on a pci bridge, create some
-	 * connection points now so they show up "on motherboard".
+	 * If we didn't see ISA on a pci bridge, create some
+	 * connection points now so it shows up "on motherboard".
 	 */
-	if (!devclass_get_device(devclass_find("eisa"), 0)) {
-		child = BUS_ADD_CHILD(dev, 0, "eisa", 0);
-		if (child == NULL)
-			panic("legacy_attach eisa");
-		device_probe_and_attach(child);
-	}
-	if (!devclass_get_device(devclass_find("mca"), 0)) {
-        	child = BUS_ADD_CHILD(dev, 0, "mca", 0);
-        	if (child == 0)
-                	panic("legacy_probe mca");
-		device_probe_and_attach(child);
-	}
 	if (!devclass_get_device(devclass_find("isa"), 0)) {
 		child = BUS_ADD_CHILD(dev, 0, "isa", 0);
 		if (child == NULL)

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200209260607.g8Q67rXA080347>