Commit 0d1c84d6 authored by navin patidar's avatar navin patidar Committed by Greg Kroah-Hartman
Browse files

staging: rtl8188eu: Efuse_ReadAllMap(): Remove unused parameter bool test

parent c4f6cf0e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -407,7 +407,7 @@ efuse_ShadowRead4Byte(
 * 11/11/2008	MHC		Create Version 0.
 *
 *---------------------------------------------------------------------------*/
static void Efuse_ReadAllMap(struct adapter *pAdapter, u8 efuseType, u8 *Efuse, bool pseudo)
static void Efuse_ReadAllMap(struct adapter *pAdapter, u8 efuseType, u8 *Efuse)
{
	u16 mapLen = 0;

@@ -449,7 +449,7 @@ void EFUSE_ShadowMapUpdate(
	if (pEEPROM->bautoload_fail_flag)
		_rtw_memset(pEEPROM->efuse_eeprom_data, 0xFF, mapLen);
	else
		Efuse_ReadAllMap(pAdapter, efuseType, pEEPROM->efuse_eeprom_data, pseudo);
		Efuse_ReadAllMap(pAdapter, efuseType, pEEPROM->efuse_eeprom_data);
} /*  EFUSE_ShadowMapUpdate */

/*-----------------------------------------------------------------------------