Commit 7e84ff4e authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: rename u32TxCount of struct rf_info

This patch renames u32TxCount of struct rf_info to tx_cnt
to avoid CamelCase naming convention.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 00c8dfcf
...@@ -2150,7 +2150,7 @@ s32 Handle_GetStatistics(struct host_if_drv *hif_drv, struct rf_info *pstrStatis ...@@ -2150,7 +2150,7 @@ s32 Handle_GetStatistics(struct host_if_drv *hif_drv, struct rf_info *pstrStatis
strWIDList[u32WidsCount].id = WID_SUCCESS_FRAME_COUNT; strWIDList[u32WidsCount].id = WID_SUCCESS_FRAME_COUNT;
strWIDList[u32WidsCount].type = WID_INT; strWIDList[u32WidsCount].type = WID_INT;
strWIDList[u32WidsCount].size = sizeof(u32); strWIDList[u32WidsCount].size = sizeof(u32);
strWIDList[u32WidsCount].val = (s8 *)&pstrStatistics->u32TxCount; strWIDList[u32WidsCount].val = (s8 *)&pstrStatistics->tx_cnt;
u32WidsCount++; u32WidsCount++;
strWIDList[u32WidsCount].id = WID_RECEIVED_FRAGMENT_COUNT; strWIDList[u32WidsCount].id = WID_RECEIVED_FRAGMENT_COUNT;
......
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
struct rf_info { struct rf_info {
u8 link_speed; u8 link_speed;
s8 rssi; s8 rssi;
u32 u32TxCount; u32 tx_cnt;
u32 u32RxCount; u32 u32RxCount;
u32 u32TxFailureCount; u32 u32TxFailureCount;
}; };
......
...@@ -1568,7 +1568,7 @@ static int get_station(struct wiphy *wiphy, struct net_device *dev, ...@@ -1568,7 +1568,7 @@ static int get_station(struct wiphy *wiphy, struct net_device *dev,
sinfo->signal = strStatistics.rssi; sinfo->signal = strStatistics.rssi;
sinfo->rx_packets = strStatistics.u32RxCount; sinfo->rx_packets = strStatistics.u32RxCount;
sinfo->tx_packets = strStatistics.u32TxCount + strStatistics.u32TxFailureCount; sinfo->tx_packets = strStatistics.tx_cnt + strStatistics.u32TxFailureCount;
sinfo->tx_failed = strStatistics.u32TxFailureCount; sinfo->tx_failed = strStatistics.u32TxFailureCount;
sinfo->txrate.legacy = strStatistics.link_speed * 10; sinfo->txrate.legacy = strStatistics.link_speed * 10;
......
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