Commit 2c7c0c34 authored by Xenia Ragiadakou's avatar Xenia Ragiadakou Committed by Greg Kroah-Hartman

staging: rtl8192u: fix return statements in r8192U_core.c

This patch fixes the following checkpatch error:
ERROR: return is not a function, parentheses are not required

Also, fixes the spaces in return statements to
improve code readability.
Signed-off-by: default avatarXenia Ragiadakou <burzalodowa@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b1753c43
...@@ -1083,7 +1083,7 @@ void rtl8192_try_wake_queue(struct net_device *dev, int pri); ...@@ -1083,7 +1083,7 @@ void rtl8192_try_wake_queue(struct net_device *dev, int pri);
u16 DrvAggr_PaddingAdd(struct net_device *dev, struct sk_buff *skb) u16 DrvAggr_PaddingAdd(struct net_device *dev, struct sk_buff *skb)
{ {
u16 PaddingNum = 256 - ((skb->len + TX_PACKET_DRVAGGR_SUBFRAME_SHIFT_BYTES) % 256); u16 PaddingNum = 256 - ((skb->len + TX_PACKET_DRVAGGR_SUBFRAME_SHIFT_BYTES) % 256);
return (PaddingNum&0xff); return PaddingNum & 0xff;
} }
u8 MRateToHwRate8190Pci(u8 rate); u8 MRateToHwRate8190Pci(u8 rate);
...@@ -4174,7 +4174,7 @@ static u8 rtl819x_query_rxpwrpercentage(char antpower) ...@@ -4174,7 +4174,7 @@ static u8 rtl819x_query_rxpwrpercentage(char antpower)
else if (antpower >= 0) else if (antpower >= 0)
return 100; return 100;
else else
return (100+antpower); return 100 + antpower;
} /* QueryRxPwrPercentage */ } /* QueryRxPwrPercentage */
...@@ -4192,7 +4192,7 @@ static u8 rtl819x_evm_dbtopercentage(char value) ...@@ -4192,7 +4192,7 @@ static u8 rtl819x_evm_dbtopercentage(char value)
ret_val *= 3; ret_val *= 3;
if (ret_val == 99) if (ret_val == 99)
ret_val = 100; ret_val = 100;
return(ret_val); return ret_val;
} }
// //
// Description: // Description:
......
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