diff options
author | Malcolm Priestley <tvboxspy@gmail.com> | 2013-08-26 11:21:11 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-08-26 06:26:47 -0700 |
commit | 9d5829bfbae67d3b185a1360185ea56af163147d (patch) | |
tree | 0894f1f707452132279c93de9fa148392f2974f8 /drivers/staging/vt6656 | |
parent | 13fe62ae6a471e7a9c8c11c72d18e650235909e3 (diff) |
staging: rxtx.c s_vFillRTSHead white space and formating clean up
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6656')
-rw-r--r-- | drivers/staging/vt6656/rxtx.c | 39 |
1 files changed, 18 insertions, 21 deletions
diff --git a/drivers/staging/vt6656/rxtx.c b/drivers/staging/vt6656/rxtx.c index 07854316ca59..e97bc4098f89 100644 --- a/drivers/staging/vt6656/rxtx.c +++ b/drivers/staging/vt6656/rxtx.c @@ -725,37 +725,34 @@ static void s_vFillRTSHead(struct vnt_private *pDevice, u8 byPktType, if (!head) return; - // Note: So far RTSHead doesn't appear in ATIM & Beacom DMA, so we don't need to take them into account. - // Otherwise, we need to modified codes for them. - if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) { - if (byFBOption == AUTO_FB_NONE) { - vnt_rxtx_rts_g_head(pDevice, &head->rts_g, + /* Note: So far RTSHead doesn't appear in ATIM + * & Beacom DMA, so we don't need to take them + * into account. + * Otherwise, we need to modified codes for them. + */ + if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) { + if (byFBOption == AUTO_FB_NONE) + vnt_rxtx_rts_g_head(pDevice, &head->rts_g, psEthHeader, byPktType, cbFrameLength, bNeedAck, wCurrentRate, byFBOption); - } - else { - vnt_rxtx_rts_g_fb_head(pDevice, &head->rts_g_fb, + else + vnt_rxtx_rts_g_fb_head(pDevice, &head->rts_g_fb, psEthHeader, byPktType, cbFrameLength, bNeedAck, wCurrentRate, byFBOption); - } // if (byFBOption == AUTO_FB_NONE) - } - else if (byPktType == PK_TYPE_11A) { - if (byFBOption == AUTO_FB_NONE) { - vnt_rxtx_rts_ab_head(pDevice, &head->rts_ab, + } else if (byPktType == PK_TYPE_11A) { + if (byFBOption == AUTO_FB_NONE) + vnt_rxtx_rts_ab_head(pDevice, &head->rts_ab, psEthHeader, byPktType, cbFrameLength, bNeedAck, wCurrentRate, byFBOption); - } - else { - vnt_rxtx_rts_a_fb_head(pDevice, &head->rts_a_fb, + else + vnt_rxtx_rts_a_fb_head(pDevice, &head->rts_a_fb, psEthHeader, byPktType, cbFrameLength, bNeedAck, wCurrentRate, byFBOption); - } - } - else if (byPktType == PK_TYPE_11B) { - vnt_rxtx_rts_ab_head(pDevice, &head->rts_ab, + } else if (byPktType == PK_TYPE_11B) { + vnt_rxtx_rts_ab_head(pDevice, &head->rts_ab, psEthHeader, byPktType, cbFrameLength, bNeedAck, wCurrentRate, byFBOption); - } + } } static void s_vFillCTSHead(struct vnt_private *pDevice, u32 uDMAIdx, |