From 0f552762e45d65746b7b1ee44d8ca1b52bf83450 Mon Sep 17 00:00:00 2001 From: njl Date: Tue, 29 Apr 2003 18:39:29 +0000 Subject: Import of Intel ACPI 20030228 vendor distribution --- sys/contrib/dev/acpica/dbhistry.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'sys/contrib/dev/acpica/dbhistry.c') 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; -- cgit v1.1