From owner-svn-src-head@FreeBSD.ORG Tue Jun 23 15:08:04 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 254C7106568E; Tue, 23 Jun 2009 15:08:04 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 125308FC1E; Tue, 23 Jun 2009 15:08:04 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n5NF83tS080098; Tue, 23 Jun 2009 15:08:03 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n5NF83oJ080096; Tue, 23 Jun 2009 15:08:03 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <200906231508.n5NF83oJ080096@svn.freebsd.org> From: Rui Paulo Date: Tue, 23 Jun 2009 15:08:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r194716 - head/sys/dev/acpi_support X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2009 15:08:05 -0000 Author: rpaulo Date: Tue Jun 23 15:08:03 2009 New Revision: 194716 URL: http://svn.freebsd.org/changeset/base/194716 Log: Fix build with ACPI_DEBUG. MFC after: 2 weeks Modified: head/sys/dev/acpi_support/acpi_wmi.c Modified: head/sys/dev/acpi_support/acpi_wmi.c ============================================================================== --- head/sys/dev/acpi_support/acpi_wmi.c Tue Jun 23 14:57:06 2009 (r194715) +++ head/sys/dev/acpi_support/acpi_wmi.c Tue Jun 23 15:08:03 2009 (r194716) @@ -653,7 +653,7 @@ acpi_wmi_ec_handler(UINT32 function, ACP UINT8 ec_addr; ACPI_STATUS status; - ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, (UINT32)Address); + ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, (UINT32)address); sc = (struct acpi_wmi_softc *)context; if (width % 8 != 0 || value == NULL || context == NULL)