This patch renames u32TxCount of struct rf_info to tx_cnt
to avoid CamelCase naming convention.
Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
        strWIDList[u32WidsCount].id = WID_SUCCESS_FRAME_COUNT;
        strWIDList[u32WidsCount].type = WID_INT;
        strWIDList[u32WidsCount].size = sizeof(u32);
-       strWIDList[u32WidsCount].val = (s8 *)&pstrStatistics->u32TxCount;
+       strWIDList[u32WidsCount].val = (s8 *)&pstrStatistics->tx_cnt;
        u32WidsCount++;
 
        strWIDList[u32WidsCount].id = WID_RECEIVED_FRAGMENT_COUNT;
 
 struct rf_info {
        u8 link_speed;
        s8 rssi;
-       u32 u32TxCount;
+       u32 tx_cnt;
        u32 u32RxCount;
        u32 u32TxFailureCount;
 };
 
 
                sinfo->signal = strStatistics.rssi;
                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->txrate.legacy = strStatistics.link_speed * 10;