summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>2001-03-05 02:16:51 +0000
committerMike Smith <msmith@FreeBSD.org>2001-03-05 02:16:51 +0000
commit497b08a07e41b08da459e03b2bae26600d6ea62c (patch)
tree370321c5e2b4efe4e5ac201cc6077450ac3ed8b3
parent27540537e82433a5f3d9442a04929a47d685555b (diff)
Notes
-rw-r--r--sys/contrib/dev/acpica/Subsystem/Include/acconfig.h9
-rw-r--r--sys/contrib/dev/acpica/Subsystem/Include/acgcc.h7
-rw-r--r--sys/contrib/dev/acpica/Subsystem/Interpreter/amfldio.c4
-rw-r--r--sys/contrib/dev/acpica/acconfig.h9
-rw-r--r--sys/contrib/dev/acpica/acgcc.h7
-rw-r--r--sys/contrib/dev/acpica/exfldio.c4
6 files changed, 14 insertions, 26 deletions
diff --git a/sys/contrib/dev/acpica/Subsystem/Include/acconfig.h b/sys/contrib/dev/acpica/Subsystem/Include/acconfig.h
index 9595213bfa15..0721500cc490 100644
--- a/sys/contrib/dev/acpica/Subsystem/Include/acconfig.h
+++ b/sys/contrib/dev/acpica/Subsystem/Include/acconfig.h
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Name: acconfig.h - Global configuration constants
- * $Revision: 53 $
+ * $Revision: 55 $
*
*****************************************************************************/
@@ -144,7 +144,7 @@
/* Version string */
-#define ACPI_CA_VERSION 0x20010125
+#define ACPI_CA_VERSION 0x20010208
/* Maximum objects in the various object caches */
@@ -241,10 +241,5 @@
#define RSDP_SCAN_STEP 16
-/* Maximum nesting of package objects */
-
-#define MAX_PACKAGE_DEPTH 16
-
-
#endif /* _ACCONFIG_H */
diff --git a/sys/contrib/dev/acpica/Subsystem/Include/acgcc.h b/sys/contrib/dev/acpica/Subsystem/Include/acgcc.h
index f4510e7064c5..e486315d9311 100644
--- a/sys/contrib/dev/acpica/Subsystem/Include/acgcc.h
+++ b/sys/contrib/dev/acpica/Subsystem/Include/acgcc.h
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Name: acgcc.h - GCC specific defines, etc.
- * $Revision: 4 $
+ * $Revision: 5 $
*
*****************************************************************************/
@@ -117,12 +117,12 @@
#ifndef __ACGCC_H__
#define __ACGCC_H__
-#define COMPILER_DEPENDENT_UINT64 unsigned long long
#ifdef __ia64__
#define _IA64
+#define COMPILER_DEPENDENT_UINT64 unsigned long
/* Single threaded */
#define ACPI_APPLICATION
@@ -188,8 +188,7 @@
#else /* DO IA32 */
-
-
+#define COMPILER_DEPENDENT_UINT64 unsigned long long
#define ACPI_ASM_MACROS
#define causeinterrupt(level)
#define BREAKPOINT3
diff --git a/sys/contrib/dev/acpica/Subsystem/Interpreter/amfldio.c b/sys/contrib/dev/acpica/Subsystem/Interpreter/amfldio.c
index b8583d87ce9a..24c9a2a23e97 100644
--- a/sys/contrib/dev/acpica/Subsystem/Interpreter/amfldio.c
+++ b/sys/contrib/dev/acpica/Subsystem/Interpreter/amfldio.c
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: amfldio - Aml Field I/O
- * $Revision: 37 $
+ * $Revision: 39 $
*
*****************************************************************************/
@@ -573,7 +573,7 @@ AcpiAmlWriteFieldDataWithUpdateRule (
/* Check if update rule needs to be applied (not if mask is all ones) */
/* The left shift drops the bits we want to ignore. */
- if ((~Mask << (sizeof(Mask) * 8 - BitGranularity)) != 0)
+ if ((~Mask << (sizeof(Mask)*8 - BitGranularity)) != 0)
{
/*
* Read the current contents of the byte/word/dword containing
diff --git a/sys/contrib/dev/acpica/acconfig.h b/sys/contrib/dev/acpica/acconfig.h
index 9595213bfa15..0721500cc490 100644
--- a/sys/contrib/dev/acpica/acconfig.h
+++ b/sys/contrib/dev/acpica/acconfig.h
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Name: acconfig.h - Global configuration constants
- * $Revision: 53 $
+ * $Revision: 55 $
*
*****************************************************************************/
@@ -144,7 +144,7 @@
/* Version string */
-#define ACPI_CA_VERSION 0x20010125
+#define ACPI_CA_VERSION 0x20010208
/* Maximum objects in the various object caches */
@@ -241,10 +241,5 @@
#define RSDP_SCAN_STEP 16
-/* Maximum nesting of package objects */
-
-#define MAX_PACKAGE_DEPTH 16
-
-
#endif /* _ACCONFIG_H */
diff --git a/sys/contrib/dev/acpica/acgcc.h b/sys/contrib/dev/acpica/acgcc.h
index f4510e7064c5..e486315d9311 100644
--- a/sys/contrib/dev/acpica/acgcc.h
+++ b/sys/contrib/dev/acpica/acgcc.h
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Name: acgcc.h - GCC specific defines, etc.
- * $Revision: 4 $
+ * $Revision: 5 $
*
*****************************************************************************/
@@ -117,12 +117,12 @@
#ifndef __ACGCC_H__
#define __ACGCC_H__
-#define COMPILER_DEPENDENT_UINT64 unsigned long long
#ifdef __ia64__
#define _IA64
+#define COMPILER_DEPENDENT_UINT64 unsigned long
/* Single threaded */
#define ACPI_APPLICATION
@@ -188,8 +188,7 @@
#else /* DO IA32 */
-
-
+#define COMPILER_DEPENDENT_UINT64 unsigned long long
#define ACPI_ASM_MACROS
#define causeinterrupt(level)
#define BREAKPOINT3
diff --git a/sys/contrib/dev/acpica/exfldio.c b/sys/contrib/dev/acpica/exfldio.c
index b8583d87ce9a..24c9a2a23e97 100644
--- a/sys/contrib/dev/acpica/exfldio.c
+++ b/sys/contrib/dev/acpica/exfldio.c
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: amfldio - Aml Field I/O
- * $Revision: 37 $
+ * $Revision: 39 $
*
*****************************************************************************/
@@ -573,7 +573,7 @@ AcpiAmlWriteFieldDataWithUpdateRule (
/* Check if update rule needs to be applied (not if mask is all ones) */
/* The left shift drops the bits we want to ignore. */
- if ((~Mask << (sizeof(Mask) * 8 - BitGranularity)) != 0)
+ if ((~Mask << (sizeof(Mask)*8 - BitGranularity)) != 0)
{
/*
* Read the current contents of the byte/word/dword containing