aboutsummaryrefslogtreecommitdiff
path: root/debugger
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2010-01-21 20:56:18 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2010-01-21 20:56:18 +0000
commitf154176708d42f8a4778e3cf4b55e45b4a2be545 (patch)
tree4b6b1812ecf638d285ab3b645feee1416d0f343b /debugger
parentdeca274c44eb2d731761ba35813f64bdbdc734df (diff)
Notes
Diffstat (limited to 'debugger')
-rw-r--r--debugger/dbcmds.c2
-rw-r--r--debugger/dbdisply.c2
-rw-r--r--debugger/dbexec.c6
-rw-r--r--debugger/dbfileio.c7
-rw-r--r--debugger/dbhistry.c2
-rw-r--r--debugger/dbinput.c2
-rw-r--r--debugger/dbstats.c2
-rw-r--r--debugger/dbutils.c2
-rw-r--r--debugger/dbxface.c2
9 files changed, 12 insertions, 15 deletions
diff --git a/debugger/dbcmds.c b/debugger/dbcmds.c
index 0a542d952f45..50a8b2e037e3 100644
--- a/debugger/dbcmds.c
+++ b/debugger/dbcmds.c
@@ -8,7 +8,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
* All rights reserved.
*
* 2. License
diff --git a/debugger/dbdisply.c b/debugger/dbdisply.c
index fbcb8f10d39a..7c04ffca8bc0 100644
--- a/debugger/dbdisply.c
+++ b/debugger/dbdisply.c
@@ -8,7 +8,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
* All rights reserved.
*
* 2. License
diff --git a/debugger/dbexec.c b/debugger/dbexec.c
index 7990890fc056..da21a12589c5 100644
--- a/debugger/dbexec.c
+++ b/debugger/dbexec.c
@@ -8,7 +8,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
* All rights reserved.
*
* 2. License
@@ -243,7 +243,7 @@ AcpiDbExecuteMethod (
default:
Params[i].Type = ACPI_TYPE_INTEGER;
- Params[i].Integer.Value = i * (ACPI_INTEGER) 0x1000;
+ Params[i].Integer.Value = i * (UINT64) 0x1000;
break;
}
}
@@ -484,7 +484,7 @@ AcpiDbExecute (
* Allow any handlers in separate threads to complete.
* (Such as Notify handlers invoked from AML executed above).
*/
- AcpiOsSleep ((ACPI_INTEGER) 10);
+ AcpiOsSleep ((UINT64) 10);
#ifdef ACPI_DEBUG_OUTPUT
diff --git a/debugger/dbfileio.c b/debugger/dbfileio.c
index d52a72caa6a5..c6f2e253accf 100644
--- a/debugger/dbfileio.c
+++ b/debugger/dbfileio.c
@@ -9,7 +9,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
* All rights reserved.
*
* 2. License
@@ -150,9 +150,6 @@ AcpiDbCheckTextModeCorruption (
UINT32 TableLength,
UINT32 FileLength);
-static ACPI_STATUS
-AeLocalLoadTable (
- ACPI_TABLE_HEADER *TablePtr);
#endif
/*******************************************************************************
@@ -424,7 +421,7 @@ AcpiDbReadTable (
{
/* Now validate the checksum */
- Status = AcpiTbChecksum ((void *) *Table,
+ Status = AcpiTbVerifyChecksum ((void *) *Table,
ACPI_CAST_PTR (ACPI_TABLE_HEADER, *Table)->Length);
if (Status == AE_BAD_CHECKSUM)
diff --git a/debugger/dbhistry.c b/debugger/dbhistry.c
index e8e8a76bf104..613711e0fd23 100644
--- a/debugger/dbhistry.c
+++ b/debugger/dbhistry.c
@@ -8,7 +8,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
* All rights reserved.
*
* 2. License
diff --git a/debugger/dbinput.c b/debugger/dbinput.c
index 74b2dca6edd7..29b51b6d7523 100644
--- a/debugger/dbinput.c
+++ b/debugger/dbinput.c
@@ -8,7 +8,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
* All rights reserved.
*
* 2. License
diff --git a/debugger/dbstats.c b/debugger/dbstats.c
index 63a62ecbef8b..ace8263734ea 100644
--- a/debugger/dbstats.c
+++ b/debugger/dbstats.c
@@ -8,7 +8,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
* All rights reserved.
*
* 2. License
diff --git a/debugger/dbutils.c b/debugger/dbutils.c
index 15799eb7b4c9..19ff3f02a2ae 100644
--- a/debugger/dbutils.c
+++ b/debugger/dbutils.c
@@ -8,7 +8,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
* All rights reserved.
*
* 2. License
diff --git a/debugger/dbxface.c b/debugger/dbxface.c
index f3f7a4474601..1c0557ac3151 100644
--- a/debugger/dbxface.c
+++ b/debugger/dbxface.c
@@ -8,7 +8,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
* All rights reserved.
*
* 2. License