From owner-cvs-all@FreeBSD.ORG Sun Oct 10 03:18:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CF8016A4CE; Sun, 10 Oct 2004 03:18:56 +0000 (GMT) Received: from ylpvm43.prodigy.net (ylpvm43-ext.prodigy.net [207.115.57.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1563943D46; Sun, 10 Oct 2004 03:18:56 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.5.52] (adsl-64-171-187-209.dsl.snfc21.pacbell.net [64.171.187.209])i9A3J29p011179; Sat, 9 Oct 2004 23:19:03 -0400 Message-ID: <4168AA1E.10605@root.org> Date: Sat, 09 Oct 2004 20:18:54 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040901) X-Accept-Language: en-us, en MIME-Version: 1.0 To: cvs-src@freebsd.org, cvs-all@freebsd.org, src-committers@freebsd.org References: <20041010031556.A230116A4EF@hub.freebsd.org> In-Reply-To: <20041010031556.A230116A4EF@hub.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/sys/dev/acpica acpi_quirks acpi_timer.c acpivar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 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: Sun, 10 Oct 2004 03:18:56 -0000 Nate Lawson wrote: > njl 2004-10-10 03:15:45 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_5) > sys/dev/acpica acpi_quirks acpi_timer.c acpivar.h > Log: > MFC: Only disable the timer for the ASUS P5A and -B. > > Approved by: re (scottl) > > Revision Changes Path > 1.3.2.1 +5 -8 src/sys/dev/acpica/acpi_quirks > 1.35.2.1 +2 -1 src/sys/dev/acpica/acpi_timer.c > 1.79.2.3 +6 -0 src/sys/dev/acpica/acpivar.h > > --- src/sys/dev/acpica/acpivar.h:1.79.2.2 Tue Aug 31 05:26:37 2004 > +++ src/sys/dev/acpica/acpivar.h Sun Oct 10 03:15:45 2004 > @@ -98,6 +98,10 @@ > /* Flags for each device defined in the AML namespace. */ > #define ACPI_FLAG_WAKE_ENABLED 0x1 > > +/* Macros for extracting parts of a PCI address from an _ADR value. */ > +#define ACPI_ADR_PCI_SLOT(adr) (((adr) & 0xffff0000) >> 16) > +#define ACPI_ADR_PCI_FUNC(adr) ((adr) & 0xffff) > + > /* > * Entry points to ACPI from above are global functions defined in this > * file, sysctls, and I/O on the control device. Entry points from below Apologies, jhb@'s compatibility macros crept into the MFC. They should not affect anything since I didn't MFC any use of them. I rebuilt just to be sure and they are not used. -Nate