diff options
author | Xenia Ragiadakou <burzalodowa@gmail.com> | 2013-05-22 18:22:35 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-22 15:34:32 -0700 |
commit | 53c7f3cdbab18d1c9b39c6222ea32c5215c8887b (patch) | |
tree | 0f6640b009ae6c3aaf8454a3970cf4823ffffd54 | |
parent | 212bff38c9e55d057fa96a739f928d585c0e8a7a (diff) |
rtl8192u: fix whitespace around 'while' in r8192U_core.c
This patch fixes whitespace around 'while' following
the kernel coding style conventions.
Signed-off-by: Xenia Ragiadakou <burzalodowa@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/rtl8192u/r8192U_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8192u/r8192U_core.c b/drivers/staging/rtl8192u/r8192U_core.c index 8dc271e937f7..14ded643f8eb 100644 --- a/drivers/staging/rtl8192u/r8192U_core.c +++ b/drivers/staging/rtl8192u/r8192U_core.c @@ -1402,7 +1402,7 @@ u8 DrvAggr_GetAggregatibleList(struct net_device *dev, struct sk_buff *skb, break; } - } while((skb = skb_dequeue(&ieee->skb_drv_aggQ[QueueID]))); + } while ((skb = skb_dequeue(&ieee->skb_drv_aggQ[QueueID]))); RT_TRACE(COMP_AMSDU, "DrvAggr_GetAggregatibleList, nAggrTcbNum = %d \n", pSendList->nr_drv_agg_frames); return pSendList->nr_drv_agg_frames; @@ -3972,7 +3972,7 @@ void CAM_read_entry( //Check polling bit is clear // mdelay(1); - while((i--)>=0) + while ((i--)>=0) { ulStatus = read_nic_dword(dev, RWCAM); if (ulStatus & BIT31){ |