Added revision number to header

date	2000.08.16.21.38.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 18:54:57 +00:00
parent aaf072eb8a
commit 2911e62dda
4 changed files with 9 additions and 5 deletions

View File

@ -2,6 +2,7 @@
/******************************************************************************
*
* Module Name: tbinstal - ACPI table installation and removal
* $Revision: 1.27 $
*
*****************************************************************************/

View File

@ -2,6 +2,7 @@
/******************************************************************************
*
* Module Name: tbutils - Table manipulation utilities
* $Revision: 1.24 $
*
*****************************************************************************/

View File

@ -3,6 +3,7 @@
*
* Module Name: tbxface - Public interfaces to the ACPI subsystem
* ACPI table oriented interfaces
* $Revision: 1.21 $
*
*****************************************************************************/

View File

@ -2,6 +2,7 @@
/******************************************************************************
*
* Module Name: tbtable - ACPI tables: FACP, FACS, and RSDP utilities
* $Revision: 1.21 $
*
*****************************************************************************/
@ -255,13 +256,13 @@ AcpiTbGetTableRsdt (
*
******************************************************************************/
INT8 *
UINT8 *
AcpiTbScanMemoryForRsdp (
INT8 *StartAddress,
UINT8 *StartAddress,
UINT32 Length)
{
UINT32 Offset;
INT8 *MemRover;
UINT8 *MemRover;
/* Search from given start addr for the requested length */
@ -312,8 +313,8 @@ ACPI_STATUS
AcpiTbFindRsdp (
ACPI_TABLE_DESC *TableInfo)
{
INT8 *TablePtr;
INT8 *MemRover;
UINT8 *TablePtr;
UINT8 *MemRover;
ACPI_STATUS Status = AE_OK;
FUNCTION_TRACE ("TbFindRsdp");