Source clean-up via acpisrc utility

date	2000.11.02.22.51.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 19:36:03 +00:00
parent 44596aa7b4
commit 85c6db5535
2 changed files with 22 additions and 3 deletions

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Name: acglobal.h - Declarations for global variables
* $Revision: 1.89 $
* $Revision: 1.90 $
*
*****************************************************************************/
@ -256,7 +256,6 @@ extern UINT32 AcpiGbl_StartupFlags;
extern UINT8 AcpiGbl_DecodeTo8bit[];
/*****************************************************************************
*
* Namespace globals

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Name: achware.h -- hardware specific interfaces
* $Revision: 1.44 $
* $Revision: 1.46 $
*
*****************************************************************************/
@ -148,6 +148,13 @@ AcpiHwGetModeCapabilities (
/* Register I/O Prototypes */
UINT32
AcpiHwRegisterBitAccess (
NATIVE_UINT ReadWrite,
BOOLEAN UseLock,
UINT32 RegisterId,
... /* DWORD Write Value */);
UINT32
AcpiHwRegisterRead (
BOOLEAN UseLock,
@ -159,6 +166,19 @@ AcpiHwRegisterWrite (
UINT32 RegisterId,
UINT32 Value);
UINT32
AcpiHwLowLevelRead (
UINT32 Width,
ACPI_GAS *Register,
UINT32 Offset);
void
AcpiHwLowLevelWrite (
UINT32 Width,
UINT32 Value,
ACPI_GAS *Register,
UINT32 Offset);
void
AcpiHwClearAcpiStatus (
void);