remove redundant line

date	2000.10.09.16.54.00;	author agrover;	state Exp;
This commit is contained in:
aystarik 2005-06-29 16:24:22 +00:00
parent b41eed1a33
commit a6cf41ad1a

View File

@ -1,7 +1,7 @@
/*******************************************************************************
*
* Module Name: dbinput - user front-end to the AML debugger
* $Revision: 1.48 $
* $Revision: 1.51 $
*
******************************************************************************/
@ -155,10 +155,10 @@ BOOLEAN opt_parse_jit = FALSE;
BOOLEAN opt_verbose = TRUE;
/*
/*
* Top-level debugger commands.
*
* This list of commands must match the string table below it
* This list of commands must match the string table below it
*/
enum AcpiAmlDebuggerCommands
@ -379,7 +379,7 @@ AcpiDbDisplayHelp (
* PARAMETERS: String - Command buffer
* Next - Return value, end of next token
*
* RETURN: Pointer to the start of the next token.
* RETURN: Pointer to the start of the next token.
*
* DESCRIPTION: Command line parsing. Get the next token on the command line
*
@ -541,7 +541,7 @@ AcpiDbMatchCommand (
* PARAMETERS: InputBuffer - Command line buffer
* WalkState - Current walk
* Op - Current (executing) parse op
*
*
* RETURN: Status
*
* DESCRIPTION: Command dispatcher. Called from two places:
@ -722,15 +722,6 @@ AcpiDbCommandDispatch (
case CMD_LOAD:
Status = AcpiDbLoadAcpiTable (Args[1]);
if (ACPI_FAILURE (Status))
{
return (Status);
}
AcpiDbSetOutputDestination (DB_REDIRECTABLE_OUTPUT);
Status = AcpiLoadNamespace ();
AcpiDbSetOutputDestination (DB_CONSOLE_OUTPUT);
if (ACPI_FAILURE (Status))
{
return (Status);