rtl8188eu: Remove unused IN and OUT directives used only for Windows

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2013-05-26 22:51:56 -05:00
parent 058fa5a916
commit 78adabf36d
43 changed files with 289 additions and 324 deletions

View file

@ -142,9 +142,9 @@ Efuse_PowerSwitch(
*---------------------------------------------------------------------------*/
u16
Efuse_GetCurrentSize(
IN PADAPTER pAdapter,
IN u8 efuseType,
IN bool bPseudoTest)
PADAPTER pAdapter,
u8 efuseType,
bool bPseudoTest)
{
u16 ret=0;
@ -155,7 +155,7 @@ Efuse_GetCurrentSize(
/* 11/16/2008 MH Add description. Get current efuse area enabled word!!. */
u8
Efuse_CalculateWordCnts(IN u8 word_en)
Efuse_CalculateWordCnts(u8 word_en)
{
u8 word_cnts = 0;
if (!(word_en & BIT(0))) word_cnts++; // 0 : write enable
@ -181,7 +181,7 @@ ReadEFuseByte(
PADAPTER Adapter,
u16 _offset,
u8 *pbuf,
IN bool bPseudoTest)
bool bPseudoTest)
{
u32 value32;
u8 readbyte;
@ -1083,9 +1083,9 @@ efuse_ShadowWrite4Byte(
*
*---------------------------------------------------------------------------*/
void EFUSE_ShadowMapUpdate(
IN PADAPTER pAdapter,
IN u8 efuseType,
IN bool bPseudoTest)
PADAPTER pAdapter,
u8 efuseType,
bool bPseudoTest)
{
EEPROM_EFUSE_PRIV *pEEPROM = GET_EEPROM_EFUSE_PRIV(pAdapter);
u16 mapLen=0;