Commit 7d79ec69 authored by Xenia Ragiadakou's avatar Xenia Ragiadakou Committed by Greg Kroah-Hartman

staging: rtl8192u: remove space before '++' in r8192U_core.c

This patch fixes the following checkpatch error:
ERROR: space prohibited before that '++'
Signed-off-by: default avatarXenia Ragiadakou <burzalodowa@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 003a2d18
...@@ -1501,7 +1501,7 @@ u16 ComputeTxTime(u16 FrameLength, u16 DataRate, u8 bManagementFrame, ...@@ -1501,7 +1501,7 @@ u16 ComputeTxTime(u16 FrameLength, u16 DataRate, u8 bManagementFrame,
else // Short preamble else // Short preamble
FrameTime = (u16)(72+24+(FrameLength*8/(DataRate/10))); FrameTime = (u16)(72+24+(FrameLength*8/(DataRate/10)));
if ((FrameLength*8 % (DataRate/10)) != 0) //Get the Ceilling if ((FrameLength*8 % (DataRate/10)) != 0) //Get the Ceilling
FrameTime ++; FrameTime++;
} else { //802.11g DSSS-OFDM PLCP length field calculation. } else { //802.11g DSSS-OFDM PLCP length field calculation.
N_DBPS = N_DBPSOfRate(DataRate); N_DBPS = N_DBPSOfRate(DataRate);
Ceiling = (16 + 8*FrameLength + 6) / N_DBPS Ceiling = (16 + 8*FrameLength + 6) / N_DBPS
...@@ -3187,7 +3187,7 @@ RESET_TYPE TxCheckStuck(struct net_device *dev) ...@@ -3187,7 +3187,7 @@ RESET_TYPE TxCheckStuck(struct net_device *dev)
// Decide such threshold according to current power save mode // Decide such threshold according to current power save mode
// //
for (QueueID = 0; QueueID <= BEACON_QUEUE; QueueID ++) { for (QueueID = 0; QueueID <= BEACON_QUEUE; QueueID++) {
if (QueueID == TXCMD_QUEUE) if (QueueID == TXCMD_QUEUE)
continue; continue;
#ifdef USB_TX_DRIVER_AGGREGATION_ENABLE #ifdef USB_TX_DRIVER_AGGREGATION_ENABLE
......
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