aboutsummaryrefslogtreecommitdiff
path: root/source/include/acapps.h
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2017-01-19 19:46:15 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2017-01-19 19:46:15 +0000
commita0b3a9cf1fc8fe1d9f95e69cdf8914bb6ebcee03 (patch)
tree9a4c1adfb3b461e73df26093e34a24a1836bae3b /source/include/acapps.h
parentf2e6c39316f68b7ccc7abb766f82ed421c8e22b4 (diff)
downloadsrc-a0b3a9cf1fc8fe1d9f95e69cdf8914bb6ebcee03.tar.gz
src-a0b3a9cf1fc8fe1d9f95e69cdf8914bb6ebcee03.zip
Import ACPICA 20170119.vendor/acpica/20170119
Notes
Notes: svn path=/vendor-sys/acpica/dist/; revision=312431 svn path=/vendor-sys/acpica/20170119/; revision=312433; tag=vendor/acpica/20170119
Diffstat (limited to 'source/include/acapps.h')
-rw-r--r--source/include/acapps.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/include/acapps.h b/source/include/acapps.h
index d14bce1ff03f..ebc1cfbcd7e4 100644
--- a/source/include/acapps.h
+++ b/source/include/acapps.h
@@ -5,7 +5,7 @@
*****************************************************************************/
/*
- * Copyright (C) 2000 - 2016, Intel Corp.
+ * Copyright (C) 2000 - 2017, Intel Corp.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -51,26 +51,26 @@
/* Common info for tool signons */
#define ACPICA_NAME "Intel ACPI Component Architecture"
-#define ACPICA_COPYRIGHT "Copyright (c) 2000 - 2016 Intel Corporation"
+#define ACPICA_COPYRIGHT "Copyright (c) 2000 - 2017 Intel Corporation"
#if ACPI_MACHINE_WIDTH == 64
-#define ACPI_WIDTH "-64"
+#define ACPI_WIDTH " (64-bit version)"
#elif ACPI_MACHINE_WIDTH == 32
-#define ACPI_WIDTH "-32"
+#define ACPI_WIDTH " (32-bit version)"
#else
#error unknown ACPI_MACHINE_WIDTH
-#define ACPI_WIDTH "-??"
+#define ACPI_WIDTH " (unknown bit width, not 32 or 64)"
#endif
/* Macros for signons and file headers */
#define ACPI_COMMON_SIGNON(UtilityName) \
- "\n%s\n%s version %8.8X%s\n%s\n\n", \
+ "\n%s\n%s version %8.8X\n%s\n\n", \
ACPICA_NAME, \
- UtilityName, ((UINT32) ACPI_CA_VERSION), ACPI_WIDTH, \
+ UtilityName, ((UINT32) ACPI_CA_VERSION), \
ACPICA_COPYRIGHT
#define ACPI_COMMON_HEADER(UtilityName, Prefix) \