From owner-cvs-all@FreeBSD.ORG Tue Oct 9 07:48:08 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A4FF716A49A; Tue, 9 Oct 2007 07:48:08 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8F40213C49D; Tue, 9 Oct 2007 07:48:08 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l997m8dV044065; Tue, 9 Oct 2007 07:48:08 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l997m82R044064; Tue, 9 Oct 2007 07:48:08 GMT (envelope-from njl) Message-Id: <200710090748.l997m82R044064@repoman.freebsd.org> From: Nate Lawson Date: Tue, 9 Oct 2007 07:48:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/acpica acpi.c acpi_hpet.c acpivar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2007 07:48:08 -0000 njl 2007-10-09 07:48:08 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi.c acpi_hpet.c acpivar.h Log: Fix the HPET table probe routine to run from device_identify() instead of directly from acpi0. Before it would attach prior to the sysresource devices, causing the later allocation of its memory range to fail and print a warning like "acpi0: reservation of fed00000, 1000 (3) failed". Use an explicit define for our probe order base value of 10. Help from: jhb Tested by: Abdullah Ibn Hamad Al-Marri MFC after: 3 days Approved by: re Revision Changes Path 1.243 +4 -4 src/sys/dev/acpica/acpi.c 1.12 +8 -5 src/sys/dev/acpica/acpi_hpet.c 1.108 +8 -2 src/sys/dev/acpica/acpivar.h