Commit 1325ba08 authored by Mateusz Kulikowski's avatar Mateusz Kulikowski Committed by Greg Kroah-Hartman

staging: rtl8192e: Rename rtl8192_process_phyinfo

Use naming schema found in other rtlwifi devices.
Rename rtl8192_process_phyinfo to _rtl92e_process_phyinfo.
Signed-off-by: default avatarMateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 479e2b8c
...@@ -1690,7 +1690,7 @@ static void rtl8192_query_rxphystatus( ...@@ -1690,7 +1690,7 @@ static void rtl8192_query_rxphystatus(
} }
} }
static void rtl8192_process_phyinfo(struct r8192_priv *priv, u8 *buffer, static void _rtl92e_process_phyinfo(struct r8192_priv *priv, u8 *buffer,
struct rtllib_rx_stats *prev_st, struct rtllib_rx_stats *prev_st,
struct rtllib_rx_stats *curr_st) struct rtllib_rx_stats *curr_st)
{ {
...@@ -1900,7 +1900,7 @@ static void rtl8192_TranslateRxSignalStuff(struct net_device *dev, ...@@ -1900,7 +1900,7 @@ static void rtl8192_TranslateRxSignalStuff(struct net_device *dev,
priv->stats.numpacket_matchbssid++; priv->stats.numpacket_matchbssid++;
if (bpacket_toself) if (bpacket_toself)
priv->stats.numpacket_toself++; priv->stats.numpacket_toself++;
rtl8192_process_phyinfo(priv, tmp_buf, &previous_stats, pstats); _rtl92e_process_phyinfo(priv, tmp_buf, &previous_stats, pstats);
rtl8192_query_rxphystatus(priv, pstats, pdesc, pdrvinfo, rtl8192_query_rxphystatus(priv, pstats, pdesc, pdrvinfo,
&previous_stats, bpacket_match_bssid, &previous_stats, bpacket_match_bssid,
bpacket_toself, bPacketBeacon, bToSelfBA); bpacket_toself, bPacketBeacon, bToSelfBA);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment