summaryrefslogtreecommitdiff
path: root/source/include
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2018-04-27 21:30:01 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2018-04-27 21:30:01 +0000
commit5dc04bcfd5c1bd0942e4a6640bf39d15f464af4f (patch)
tree78a599bc6dc9341412480da5af5b8f78175d1d65 /source/include
parente44d3d8ceb12ae786d331468fe4acf41a4af5424 (diff)
downloadsrc-test2-5dc04bcfd5c1bd0942e4a6640bf39d15f464af4f.tar.gz
src-test2-5dc04bcfd5c1bd0942e4a6640bf39d15f464af4f.zip
Notes
Diffstat (limited to 'source/include')
-rw-r--r--source/include/acapps.h4
-rw-r--r--source/include/acnames.h7
-rw-r--r--source/include/acpixf.h2
3 files changed, 10 insertions, 3 deletions
diff --git a/source/include/acapps.h b/source/include/acapps.h
index 94a40187cb22..dcaebd792c2f 100644
--- a/source/include/acapps.h
+++ b/source/include/acapps.h
@@ -325,6 +325,10 @@ FlSplitInputPathname (
char **OutFilename);
char *
+FlGetFileBasename (
+ char *FilePathname);
+
+char *
AdGenerateFilename (
char *Prefix,
char *TableId);
diff --git a/source/include/acnames.h b/source/include/acnames.h
index 1f8adff00754..506ff6249b8b 100644
--- a/source/include/acnames.h
+++ b/source/include/acnames.h
@@ -191,11 +191,14 @@
/* Definitions of the predefined namespace names */
#define ACPI_UNKNOWN_NAME (UINT32) 0x3F3F3F3F /* Unknown name is "????" */
-#define ACPI_ROOT_NAME (UINT32) 0x5F5F5F5C /* Root name is "\___" */
-
#define ACPI_PREFIX_MIXED (UINT32) 0x69706341 /* "Acpi" */
#define ACPI_PREFIX_LOWER (UINT32) 0x69706361 /* "acpi" */
+/* Root name stuff */
+
+#define ACPI_ROOT_NAME (UINT32) 0x5F5F5F5C /* Root name is "\___" */
+#define ACPI_ROOT_PATHNAME "\\___"
+#define ACPI_NAMESPACE_ROOT "Namespace Root"
#define ACPI_NS_ROOT_PATH "\\"
#endif /* __ACNAMES_H__ */
diff --git a/source/include/acpixf.h b/source/include/acpixf.h
index 0ba430498306..2fee13a51e02 100644
--- a/source/include/acpixf.h
+++ b/source/include/acpixf.h
@@ -154,7 +154,7 @@
/* Current ACPICA subsystem version in YYYYMMDD format */
-#define ACPI_CA_VERSION 0x20180313
+#define ACPI_CA_VERSION 0x20180427
#include "acconfig.h"
#include "actypes.h"