Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 61ead61f authored by Teodora Baluta's avatar Teodora Baluta Committed by Greg Kroah-Hartman
Browse files

staging: rtl8187se: fix checkpatch space and tab warnings



This patch fixes checkpatch issues regarding space and tab like:

WARNING: please, no spaces at the start of a line
ERROR: code indent should use tabs where possible
WARNING: suspect code indent for conditional statements (2, 4)
ERROR: space required before the open parenthesis '('
ERROR: space required after that ',' (ctx:VxO)

Signed-off-by: default avatarTeodora Baluta <teobaluta@gmail.com>
Reviewed-by: default avatarJosh Triplett <josh@joshtriplett.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f70c8a91
Loading
Loading
Loading
Loading
+42 −40
Original line number Diff line number Diff line
@@ -331,8 +331,10 @@ int ieee80211_rtl_xmit(struct sk_buff *skb,
	 * If there is no driver handler to take the TXB, don't bother
	 * creating it...
	 */
	if ((!ieee->hard_start_xmit && !(ieee->softmac_features & IEEE_SOFTMAC_TX_QUEUE))||
	   ((!ieee->softmac_data_hard_start_xmit && (ieee->softmac_features & IEEE_SOFTMAC_TX_QUEUE)))) {
	if ((!ieee->hard_start_xmit &&
	     !(ieee->softmac_features & IEEE_SOFTMAC_TX_QUEUE)) ||
	    ((!ieee->softmac_data_hard_start_xmit &&
	      (ieee->softmac_features & IEEE_SOFTMAC_TX_QUEUE)))) {
		printk(KERN_WARNING "%s: No xmit handler.\n",
		       ieee->dev->name);
		goto success;