lkml.org 
[lkml]   [2015]   [Sep]   [11]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCHv2 11/16] staging: rtl8192u: r8192U_core: rtl8192_process_phyinfo: rename variable rfpath to rfp
    Date
    Rename variable to a shorter name to allow easier code
    refactoring in following patches.

    Signed-off-by: Raphaël Beamonte <raphael.beamonte@gmail.com>
    ---
    drivers/staging/rtl8192u/r8192U_core.c | 31 ++++++++++++++++---------------
    1 file changed, 16 insertions(+), 15 deletions(-)

    diff --git a/drivers/staging/rtl8192u/r8192U_core.c b/drivers/staging/rtl8192u/r8192U_core.c
    index 100fbbe..6bc92a7 100644
    --- a/drivers/staging/rtl8192u/r8192U_core.c
    +++ b/drivers/staging/rtl8192u/r8192U_core.c
    @@ -4047,7 +4047,7 @@ static void rtl8192_process_phyinfo(struct r8192_priv *priv, u8 *buffer,
    struct ieee80211_rx_stats *pcurrent_stats)
    {
    bool bcheck = false;
    - u8 rfpath;
    + u8 rfp;
    u32 nspatial_stream, tmp_val;
    static u32 slide_rssi_index, slide_rssi_statistics;
    static u32 slide_evm_index, slide_evm_statistics;
    @@ -4115,27 +4115,28 @@ static void rtl8192_process_phyinfo(struct r8192_priv *priv, u8 *buffer,
    */
    if (!prev_stats->bIsCCK &&
    (prev_stats->bPacketToSelf || prev_stats->bToSelfBA)) {
    - for (rfpath = RF90_PATH_A; rfpath < priv->NumTotalRFPath; rfpath++) {
    + for (rfp = RF90_PATH_A; rfp < priv->NumTotalRFPath; rfp++) {
    if (!rtl8192_phy_CheckIsLegalRFPath(
    - priv->ieee80211->dev, rfpath))
    + priv->ieee80211->dev, rfp))
    continue;

    - if (priv->stats.rx_rssi_percentage[rfpath] == 0)
    - priv->stats.rx_rssi_percentage[rfpath] =
    - prev_stats->RxMIMOSignalStrength[rfpath];
    - if (prev_stats->RxMIMOSignalStrength[rfpath] > priv->stats.rx_rssi_percentage[rfpath]) {
    - priv->stats.rx_rssi_percentage[rfpath] =
    - ((priv->stats.rx_rssi_percentage[rfpath] * (Rx_Smooth_Factor - 1)) +
    - (prev_stats->RxMIMOSignalStrength[rfpath])) / (Rx_Smooth_Factor);
    - priv->stats.rx_rssi_percentage[rfpath] = priv->stats.rx_rssi_percentage[rfpath] + 1;
    + if (priv->stats.rx_rssi_percentage[rfp] == 0)
    + priv->stats.rx_rssi_percentage[rfp] =
    + prev_stats->RxMIMOSignalStrength[rfp];
    +
    + if (prev_stats->RxMIMOSignalStrength[rfp] > priv->stats.rx_rssi_percentage[rfp]) {
    + priv->stats.rx_rssi_percentage[rfp] =
    + ((priv->stats.rx_rssi_percentage[rfp] * (Rx_Smooth_Factor - 1)) +
    + (prev_stats->RxMIMOSignalStrength[rfp])) / (Rx_Smooth_Factor);
    + priv->stats.rx_rssi_percentage[rfp] = priv->stats.rx_rssi_percentage[rfp] + 1;
    } else {
    - priv->stats.rx_rssi_percentage[rfpath] =
    - ((priv->stats.rx_rssi_percentage[rfpath] * (Rx_Smooth_Factor - 1)) +
    - (prev_stats->RxMIMOSignalStrength[rfpath])) / (Rx_Smooth_Factor);
    + priv->stats.rx_rssi_percentage[rfp] =
    + ((priv->stats.rx_rssi_percentage[rfp] * (Rx_Smooth_Factor - 1)) +
    + (prev_stats->RxMIMOSignalStrength[rfp])) / (Rx_Smooth_Factor);
    }
    RT_TRACE(COMP_DBG,
    "priv->stats.rx_rssi_percentage[rfPath] = %d\n",
    - priv->stats.rx_rssi_percentage[rfpath]);
    + priv->stats.rx_rssi_percentage[rfp]);
    }
    }

    --
    2.5.1


    \
     
     \ /
      Last update: 2015-09-11 09:41    [W:4.146 / U:0.056 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site