1
0
mirror of https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git synced 2025-04-29 15:19:40 +02:00

Fix error: ‘rate_section’ may be used uninitialized in this function [-Werror=maybe-uninitialized] (#157)

This commit is contained in:
Maximilian Schwerin 2016-10-07 17:07:36 +02:00 committed by Harshavardhana
parent f97310f5da
commit c962f7a88d

View File

@ -1409,13 +1409,15 @@ PHY_StorePwrByRateIndexVhtSeries(
//
// 3. Judge TX power by rate array rate section
//
if (rf_path == 0)
switch (rf_path)
{
rate_section = (u8)((RegAddr&0xFFF)-0xC20)/4;
}
else if (rf_path == 1)
{
rate_section = (u8)((RegAddr&0xFFF)-0xE20)/4;
case 0:
default:
rate_section = (u8)((RegAddr & 0xFFF) - 0xC20) / 4;
break;
case 1:
rate_section = (u8)((RegAddr & 0xFFF) - 0xE20) / 4;
break;
}
pHalData->TxPwrByRateOffset[pHalData->TxPwrByRateBand][rf_path][rate_section] = Data;
@ -1501,13 +1503,15 @@ VOID phy_PreprocessVHTPGDataFromExactToRelativeValue(
//
// Judge TX power by rate array rate section
//
if ( rf_path == 0 )
switch (rf_path)
{
rate_section = ( u8) ( ( RegAddr & 0xFFF ) - 0xC20 ) / 4;
}
else if ( rf_path == 1 )
{
rate_section = ( u8 ) ( ( RegAddr & 0xFFF ) - 0xE20 ) / 4;
case 0:
default:
rate_section = (u8)((RegAddr & 0xFFF) - 0xC20) / 4;
break;
case 1:
rate_section = (u8)((RegAddr & 0xFFF) - 0xE20) / 4;
break;
}
switch ( RegAddr )