staging: vt6656: rxtx: Replace wCTSDuration*
authorMalcolm Priestley <tvboxspy@gmail.com>
Tue, 18 Mar 2014 19:24:59 +0000 (19:24 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 19 Mar 2014 16:00:18 +0000 (09:00 -0700)
Fix base type to __le16 and remove camel case.

Camel case changes
wCTSDuration* -> cts_duration*

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/rxtx.c
drivers/staging/vt6656/rxtx.h

index 9846c901e65f44432c1a005ea636276b6f0917e8..fb8b2fc9df29519e59b8d7e4877e233cfc065621 100644 (file)
@@ -732,11 +732,11 @@ static u16 s_vFillCTSHead(struct vnt_private *pDevice, u32 uDMAIdx,
                        cbFrameLength, byPktType,
                        wCurrentRate, bNeedAck, byFBOption);
                /* Get CTSDuration_ba_f0 */
-               pBuf->wCTSDuration_ba_f0 = s_uGetRTSCTSDuration(pDevice,
+               pBuf->cts_duration_ba_f0 = s_uGetRTSCTSDuration(pDevice,
                        CTSDUR_BA_F0, cbFrameLength, byPktType,
                        pDevice->tx_rate_fb0, bNeedAck, byFBOption);
                /* Get CTSDuration_ba_f1 */
-               pBuf->wCTSDuration_ba_f1 = s_uGetRTSCTSDuration(pDevice,
+               pBuf->cts_duration_ba_f1 = s_uGetRTSCTSDuration(pDevice,
                        CTSDUR_BA_F1, cbFrameLength, byPktType,
                        pDevice->tx_rate_fb1, bNeedAck, byFBOption);
                /* Get CTS Frame body */
index f0ab2a3d70c964ed126fba41503880b27f22dc3d..2f65a6f57b2837ad15e2a8a72815f8361d83ba25 100644 (file)
@@ -167,8 +167,8 @@ struct vnt_cts_fb {
        struct vnt_phy_field b;
        __le16 duration_ba;
        u16 wReserved;
-       u16 wCTSDuration_ba_f0;
-       u16 wCTSDuration_ba_f1;
+       __le16 cts_duration_ba_f0;
+       __le16 cts_duration_ba_f1;
        struct ieee80211_cts data;
        u16 reserved2;
        struct vnt_tx_datahead_g_fb data_head;