Removed all compilation warnings under BeOS.

date	99.05.14.16.25.00;	author grsmith1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 16:54:16 +00:00
parent eba4c5e37e
commit fc6b6f9dd5

View File

@ -107,7 +107,7 @@
#define _COMPONENT DEVICE_MANAGER #define _COMPONENT DEVICE_MANAGER
#pragma check_stack (off) /* Is this needed? #pragma check_stack (off) */
/****************************************************************************** /******************************************************************************
@ -158,9 +158,9 @@ GetBitShift (UINT32 Mask)
UINT32 UINT32
AcpiRegisterIO (INT32 ReadWrite, INT32 RegisterId, ... /* UINT32 Value */) AcpiRegisterIO (INT32 ReadWrite, INT32 RegisterId, ... /* UINT32 Value */)
{ {
UINT32 RegisterValue; UINT32 RegisterValue = 0;
UINT32 Mask; UINT32 Mask = 0;
UINT32 Value; UINT32 Value = 0;
UINT32 GpeReg = 0; UINT32 GpeReg = 0;
@ -523,7 +523,7 @@ AcpiRegisterIO (INT32 ReadWrite, INT32 RegisterId, ... /* UINT32 Value */)
return (RegisterValue); return (RegisterValue);
} }
#pragma check_stack () /* Is this needed? #pragma check_stack () */
/****************************************************************************** /******************************************************************************