Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 1498 → Rev 2216

/drivers/devman/acpica/debugger/dbxface.c
8,7 → 8,7
*
* 1. Copyright Notice
*
* Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
* Some or all of this work - Copyright (c) 1999 - 2011, Intel Corp.
* All rights reserved.
*
* 2. License
209,8 → 209,14
 
/* Get the user input line */
 
(void) AcpiOsGetLine (AcpiGbl_DbLineBuf);
Status = AcpiOsGetLine (AcpiGbl_DbLineBuf,
ACPI_DB_LINE_BUFFER_SIZE, NULL);
if (ACPI_FAILURE (Status))
{
ACPI_EXCEPTION ((AE_INFO, Status, "While parsing command line"));
return (Status);
}
}
 
Status = AcpiDbCommandDispatch (AcpiGbl_DbLineBuf, WalkState, Op);
}