summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica/exconvrt.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/contrib/dev/acpica/exconvrt.c')
-rw-r--r--sys/contrib/dev/acpica/exconvrt.c33
1 files changed, 11 insertions, 22 deletions
diff --git a/sys/contrib/dev/acpica/exconvrt.c b/sys/contrib/dev/acpica/exconvrt.c
index d8af78d..4c607ab 100644
--- a/sys/contrib/dev/acpica/exconvrt.c
+++ b/sys/contrib/dev/acpica/exconvrt.c
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: exconvrt - Object conversion routines
- * $Revision: 20 $
+ * $Revision: 22 $
*
*****************************************************************************/
@@ -158,6 +158,9 @@ AcpiExConvertToInteger (
UINT32 IntegerSize = sizeof (ACPI_INTEGER);
+ FUNCTION_ENTRY ();
+
+
switch (ObjDesc->Common.Type)
{
case ACPI_TYPE_INTEGER:
@@ -231,7 +234,6 @@ AcpiExConvertToInteger (
* Convert string to an integer
* String must be hexadecimal as per the ACPI specification
*/
-
Result = STRTOUL (Pointer, NULL, 16);
break;
@@ -298,6 +300,9 @@ AcpiExConvertToBuffer (
UINT8 *NewBuf;
+ FUNCTION_ENTRY ();
+
+
switch (ObjDesc->Common.Type)
{
case ACPI_TYPE_INTEGER:
@@ -376,7 +381,6 @@ AcpiExConvertToBuffer (
}
-
/*******************************************************************************
*
* FUNCTION: AcpiExConvertAscii
@@ -404,23 +408,7 @@ AcpiExConvertToAscii (
UINT32 Length = sizeof (ACPI_INTEGER);
- /******** TBD: DEBUG only
- char *buf;
- char sbuf[32];
-#include <stdio.h>
-#include <stdlib.h>
- buf = _ui64toa (Integer, sbuf, 10);
- printf ("1): %s\n", sbuf);
-
- AcpiExConvertToDecimalAscii (Integer, 0, sbuf);
- printf ("2): %s\n", sbuf);
-
-
- buf = _ui64toa (Integer, sbuf, 16);
- printf ("3): %s\n", sbuf);
-
- printf ("4): %s\n", String);
-***************************************************/
+ FUNCTION_ENTRY ();
switch (Base)
@@ -479,7 +467,7 @@ AcpiExConvertToAscii (
/*
* Since leading zeros are supressed, we must check for the case where
- * the integer equals 0.
+ * the integer equals 0.
*
* Finally, null terminate the string and return the length
*/
@@ -525,6 +513,8 @@ AcpiExConvertToString (
UINT8 *Pointer;
+ FUNCTION_ENTRY ();
+
switch (ObjDesc->Common.Type)
{
@@ -731,7 +721,6 @@ AcpiExConvertToTargetType (
* If required by the target,
* perform implicit conversion on the source before we store it.
*/
-
switch (GET_CURRENT_ARG_TYPE (WalkState->OpInfo->RuntimeArgs))
{
case ARGI_SIMPLE_TARGET:
OpenPOWER on IntegriCloud