diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2017-09-29 23:02:49 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2017-09-29 23:02:49 +0000 |
commit | c39c15e23f7155ec7ad56f993e9e454f513fa561 (patch) | |
tree | dc85d94fea926a660b87e0ed430fcd96489db2e8 /sys/contrib/dev/acpica/compiler/prutils.c | |
parent | e8b437ef9acd737bfd18dc34562cce4e195e71b8 (diff) | |
parent | 2c673001fb88105f2d160032c4d4b76cb518e37f (diff) |
Merge ACPICA 20170929.
Notes
Notes:
svn path=/head/; revision=324109
Diffstat (limited to 'sys/contrib/dev/acpica/compiler/prutils.c')
-rw-r--r-- | sys/contrib/dev/acpica/compiler/prutils.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/contrib/dev/acpica/compiler/prutils.c b/sys/contrib/dev/acpica/compiler/prutils.c index 45da8146222b..3d7e5fe7fc8f 100644 --- a/sys/contrib/dev/acpica/compiler/prutils.c +++ b/sys/contrib/dev/acpica/compiler/prutils.c @@ -150,8 +150,6 @@ *****************************************************************************/ #include <contrib/dev/acpica/compiler/aslcompiler.h> -#include <contrib/dev/acpica/compiler/dtcompiler.h> - #define _COMPONENT ASL_PREPROCESSOR ACPI_MODULE_NAME ("prutils") @@ -514,7 +512,7 @@ PrPushInputFileStack ( /* Reset the global line count and filename */ Gbl_Files[ASL_FILE_INPUT].Filename = - UtStringCacheCalloc (strlen (Filename) + 1); + UtLocalCacheCalloc (strlen (Filename) + 1); strcpy (Gbl_Files[ASL_FILE_INPUT].Filename, Filename); Gbl_Files[ASL_FILE_INPUT].Handle = InputFile; |