CVS commit: src/sys/external/intel-public/acpica/dist/executer

2010-08-24 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Wed Aug 25 04:58:59 UTC 2010

Modified Files:
src/sys/external/intel-public/acpica/dist/executer: exconfig.c

Log Message:
There is nothing particularly interesting for users in:

acpicpu0 at acpi0 (CPU0)
ACPI: Dynamic OEM Table Load:
Table [SSDT](id 00EB) - 13 Objects with 0 Devices 1 Methods 0 Regions
ACPI: Dynamic OEM Table Load:
: ACPI CPU

Thus, use ACPI_DEBUG_PRINT() instead of ACPI_INFO() when a table is loaded
dynamically.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.3 -r1.2 \
src/sys/external/intel-public/acpica/dist/executer/exconfig.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/external/intel-public/acpica/dist/executer/exconfig.c
diff -u src/sys/external/intel-public/acpica/dist/executer/exconfig.c:1.1.1.3 src/sys/external/intel-public/acpica/dist/executer/exconfig.c:1.2
--- src/sys/external/intel-public/acpica/dist/executer/exconfig.c:1.1.1.3	Sun Jun  6 18:17:10 2010
+++ src/sys/external/intel-public/acpica/dist/executer/exconfig.c	Wed Aug 25 04:58:59 2010
@@ -356,7 +356,7 @@
 Status = AcpiGetTableByIndex (TableIndex, &Table);
 if (ACPI_SUCCESS (Status))
 {
-ACPI_INFO ((AE_INFO, "Dynamic OEM Table Load:"));
+ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "Dynamic OEM Table Load:"));
 AcpiTbPrintTableHeader (0, Table);
 }
 
@@ -652,7 +652,7 @@
 return_ACPI_STATUS (Status);
 }
 
-ACPI_INFO ((AE_INFO, "Dynamic OEM Table Load:"));
+ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "Dynamic OEM Table Load:"));
 AcpiTbPrintTableHeader (0, TableDesc.Pointer);
 
 /* Remove the reference by added by AcpiExStore above */



CVS commit: src/sys/external/intel-public/acpica/dist/executer

2010-06-29 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Wed Jun 30 06:43:37 UTC 2010

Modified Files:
src/sys/external/intel-public/acpica/dist/executer: exdebug.c

Log Message:
Silence debug messages related to the AML Debug() opcode. To enable it, only
set the AcpiGbl_EnableAmlDebugObject global. Previously this was enabled
also when ACPI_LV_DEBUG_OBJECT was set for AcpiDbgLevel, but this was too
noisy, even for ACPI_DEBUG kernels, when the AML makes heavy use of Debug().


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 \
src/sys/external/intel-public/acpica/dist/executer/exdebug.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/external/intel-public/acpica/dist/executer/exdebug.c
diff -u src/sys/external/intel-public/acpica/dist/executer/exdebug.c:1.1.1.1 src/sys/external/intel-public/acpica/dist/executer/exdebug.c:1.2
--- src/sys/external/intel-public/acpica/dist/executer/exdebug.c:1.1.1.1	Sun Jun  6 18:17:10 2010
+++ src/sys/external/intel-public/acpica/dist/executer/exdebug.c	Wed Jun 30 06:43:37 2010
@@ -140,10 +140,9 @@
  *
  * This function is not compiled if ACPI_NO_ERROR_MESSAGES is set.
  *
- * This function is only enabled if AcpiGbl_EnableAmlDebugObject is set, or
- * if ACPI_LV_DEBUG_OBJECT is set in the AcpiDbgLevel. Thus, in the normal
- * operational case, stores to the debug object are ignored but can be easily
- * enabled if necessary.
+ * This function is only enabled if AcpiGbl_EnableAmlDebugObject is set.
+ * Thus, in the normal operational case, stores to the debug object are
+ * ignored but can be easily enabled if necessary.
  *
  **/
 
@@ -159,10 +158,9 @@
 ACPI_FUNCTION_TRACE_PTR (ExDoDebugObject, SourceDesc);
 
 
-/* Output must be enabled via the DebugObject global or the DbgLevel */
+/* Output must be enabled via the DebugObject global */
 
-if (!AcpiGbl_EnableAmlDebugObject &&
-!(AcpiDbgLevel & ACPI_LV_DEBUG_OBJECT))
+if (!AcpiGbl_EnableAmlDebugObject)
 {
 return_VOID;
 }