From owner-p4-projects Wed Sep 25 23: 7:56 2002 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id AB3FC37B404; Wed, 25 Sep 2002 23:07:54 -0700 (PDT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B29D37B401 for ; Wed, 25 Sep 2002 23:07:54 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A61043E6E for ; Wed, 25 Sep 2002 23:07:54 -0700 (PDT) (envelope-from peter@freebsd.org) Received: from freefall.freebsd.org (perforce@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g8Q67rCo080350 for ; Wed, 25 Sep 2002 23:07:53 -0700 (PDT) (envelope-from peter@freebsd.org) Received: (from perforce@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g8Q67rXA080347 for perforce@freebsd.org; Wed, 25 Sep 2002 23:07:53 -0700 (PDT) Date: Wed, 25 Sep 2002 23:07:53 -0700 (PDT) Message-Id: <200209260607.g8Q67rXA080347@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: perforce set sender to peter@freebsd.org using -f From: Peter Wemm Subject: PERFORCE change 18157 for review To: Perforce Change Reviews Sender: owner-p4-projects@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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