From owner-p4-projects Tue Jul 16 20:48: 8 2002 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id AF37A37B401; Tue, 16 Jul 2002 20:48:03 -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 52FB337B400 for ; Tue, 16 Jul 2002 20:48:03 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1606043E4A for ; Tue, 16 Jul 2002 20:48:03 -0700 (PDT) (envelope-from peter@freebsd.org) Received: from freefall.freebsd.org (perforce@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g6H3m2JU060343 for ; Tue, 16 Jul 2002 20:48:02 -0700 (PDT) (envelope-from peter@freebsd.org) Received: (from perforce@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g6H3m2cJ060340 for perforce@freebsd.org; Tue, 16 Jul 2002 20:48:02 -0700 (PDT) Date: Tue, 16 Jul 2002 20:48:02 -0700 (PDT) Message-Id: <200207170348.g6H3m2cJ060340@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: perforce set sender to peter@freebsd.org using -f From: Peter Wemm Subject: PERFORCE change 14363 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=14363 Change 14363 by peter@peter_ia64 on 2002/07/16 20:48:01 Sometimes, I wonder if the acpica folks sit down and has a brainstorm session to figure out new ways to make people's lives hard. Affected files ... .. //depot/projects/ia64/sys/ia64/acpica/madt.c#9 edit Differences ... ==== //depot/projects/ia64/sys/ia64/acpica/madt.c#9 (text+ko) ==== @@ -237,16 +237,16 @@ static int parse_table(int countcpus) { - ACPI_PHYSICAL_ADDRESS rsdp_phys; + ACPI_POINTER rsdp_ptr; RSDP_DESCRIPTOR *rsdp; XSDT_DESCRIPTOR *xsdt; ACPI_TABLE_HEADER *table; int i, count; - if (AcpiOsGetRootPointer(0, &rsdp_phys) != AE_OK) + if (AcpiOsGetRootPointer(ACPI_LOGICAL_ADDRESSING, &rsdp_ptr) != AE_OK) return 0; - rsdp = (RSDP_DESCRIPTOR *)IA64_PHYS_TO_RR7(rsdp_phys); + rsdp = (RSDP_DESCRIPTOR *)IA64_PHYS_TO_RR7(rsdp_ptr.Pointer.Physical); xsdt = (XSDT_DESCRIPTOR *)IA64_PHYS_TO_RR7(rsdp->XsdtPhysicalAddress); count = (UINT64 *)((char *)xsdt + xsdt->Header.Length) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe p4-projects" in the body of the message