From owner-svn-src-head@freebsd.org Sat Jan 6 03:41:36 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6ED2FEB61C8; Sat, 6 Jan 2018 03:41:36 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4898F701A2; Sat, 6 Jan 2018 03:41:36 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7BFBAA0AF; Sat, 6 Jan 2018 03:41:35 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w063fZMI054260; Sat, 6 Jan 2018 03:41:35 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w063fZ2k054258; Sat, 6 Jan 2018 03:41:35 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201801060341.w063fZ2k054258@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Sat, 6 Jan 2018 03:41:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r327607 - in head/sys/contrib/dev/acpica: . common X-SVN-Group: head X-SVN-Commit-Author: jkim X-SVN-Commit-Paths: in head/sys/contrib/dev/acpica: . common X-SVN-Commit-Revision: 327607 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 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: Sat, 06 Jan 2018 03:41:36 -0000 Author: jkim Date: Sat Jan 6 03:41:35 2018 New Revision: 327607 URL: https://svnweb.freebsd.org/changeset/base/327607 Log: Fix a header inclusion missed in the previous commit. Reported by: Michael Butler (imb at protected-networks dot net) Modified: head/sys/contrib/dev/acpica/acpica_prep.sh head/sys/contrib/dev/acpica/common/dmtbinfo.c Modified: head/sys/contrib/dev/acpica/acpica_prep.sh ============================================================================== --- head/sys/contrib/dev/acpica/acpica_prep.sh Fri Jan 5 23:50:50 2018 (r327606) +++ head/sys/contrib/dev/acpica/acpica_prep.sh Sat Jan 6 03:41:35 2018 (r327607) @@ -31,10 +31,10 @@ src_headers="acapps.h acbuffer.h acclib.h accommon.h a acexcep.h acglobal.h achware.h acinterp.h aclocal.h acmacros.h \ acnames.h acnamesp.h acobject.h acopcode.h acoutput.h \ acparser.h acpi.h acpiosxf.h acpixf.h acpredef.h acresrc.h \ - acrestyp.h acstruct.h actables.h actbl.h actbl1.h actbl2.h \ - actbl3.h actypes.h acutils.h acuuid.h amlcode.h amlresrc.h \ - platform/acenv.h platform/acenvex.h platform/acfreebsd.h \ - platform/acgcc.h" + acrestyp.h acstruct.h actables.h actbinfo.h actbl.h actbl1.h \ + actbl2.h actbl3.h actypes.h acutils.h acuuid.h amlcode.h \ + amlresrc.h platform/acenv.h platform/acenvex.h \ + platform/acfreebsd.h platform/acgcc.h" comp_headers="aslcompiler.h asldefine.h aslglobal.h aslmessages.h \ aslsupport.l asltypes.h dtcompiler.h dttemplate.h preprocess.h" platform_headers="acfreebsd.h acgcc.h" Modified: head/sys/contrib/dev/acpica/common/dmtbinfo.c ============================================================================== --- head/sys/contrib/dev/acpica/common/dmtbinfo.c Fri Jan 5 23:50:50 2018 (r327606) +++ head/sys/contrib/dev/acpica/common/dmtbinfo.c Sat Jan 6 03:41:35 2018 (r327607) @@ -152,7 +152,7 @@ #include #include #include -#include "actbinfo.h" +#include /* This module used for application-level code only */