summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica/dbhistry.c
diff options
context:
space:
mode:
authornjl <njl@FreeBSD.org>2003-04-29 18:39:29 +0000
committernjl <njl@FreeBSD.org>2003-04-29 18:39:29 +0000
commit0f552762e45d65746b7b1ee44d8ca1b52bf83450 (patch)
tree4f870813153015b497486f4e5b8eaf0bb08c4bad /sys/contrib/dev/acpica/dbhistry.c
parent2b17a8d498a3e4598c19121ab1fad3e7ced2c699 (diff)
downloadFreeBSD-src-0f552762e45d65746b7b1ee44d8ca1b52bf83450.zip
FreeBSD-src-0f552762e45d65746b7b1ee44d8ca1b52bf83450.tar.gz
Import of Intel ACPI 20030228 vendor distribution
Diffstat (limited to 'sys/contrib/dev/acpica/dbhistry.c')
-rw-r--r--sys/contrib/dev/acpica/dbhistry.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/contrib/dev/acpica/dbhistry.c b/sys/contrib/dev/acpica/dbhistry.c
index fb5b0e8..bbdaa25 100644
--- a/sys/contrib/dev/acpica/dbhistry.c
+++ b/sys/contrib/dev/acpica/dbhistry.c
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: dbhistry - debugger HISTORY command
- * $Revision: 25 $
+ * $Revision: 28 $
*
*****************************************************************************/
@@ -9,7 +9,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2002, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2003, Intel Corp.
* All rights reserved.
*
* 2. License
@@ -131,7 +131,7 @@
typedef struct HistoryInfo
{
- NATIVE_CHAR Command[80];
+ char Command[80];
UINT32 CmdNum;
} HISTORY_INFO;
@@ -158,7 +158,7 @@ static UINT32 AcpiGbl_NextCmdNum = 1;
void
AcpiDbAddToHistory (
- NATIVE_CHAR *CommandLine)
+ char *CommandLine)
{
/* Put command into the next available slot */
@@ -208,7 +208,7 @@ AcpiDbAddToHistory (
void
AcpiDbDisplayHistory (void)
{
- NATIVE_UINT i;
+ ACPI_NATIVE_UINT i;
UINT16 HistoryIndex;
@@ -243,11 +243,11 @@ AcpiDbDisplayHistory (void)
*
******************************************************************************/
-NATIVE_CHAR *
+char *
AcpiDbGetFromHistory (
- NATIVE_CHAR *CommandNumArg)
+ char *CommandNumArg)
{
- NATIVE_UINT i;
+ ACPI_NATIVE_UINT i;
UINT16 HistoryIndex;
UINT32 CmdNum;
OpenPOWER on IntegriCloud