qcacld-3.0: Fix the coding style error

Fix the coding style error.

Change-Id: Iafd3fc730c188fe027fc9a4dde3f45520091f47b
CRs-Fixed: 2125802
diff --git a/core/hdd/src/wlan_hdd_softap_tx_rx.c b/core/hdd/src/wlan_hdd_softap_tx_rx.c
index a20aa27..7e3cf01 100644
--- a/core/hdd/src/wlan_hdd_softap_tx_rx.c
+++ b/core/hdd/src/wlan_hdd_softap_tx_rx.c
@@ -224,15 +224,14 @@
 #endif
 	} else if (hdd_ctx->config->tx_orphan_enable) {
 		if (qdf_nbuf_is_ipv4_tcp_pkt(skb) ||
-			qdf_nbuf_is_ipv6_tcp_pkt(skb))
+		    qdf_nbuf_is_ipv6_tcp_pkt(skb))
 			need_orphan = 1;
 	}
 
 	if (need_orphan) {
 		skb_orphan(skb);
 		++adapter->hdd_stats.hddTxRxStats.txXmitOrphaned;
-	}
-	else
+	} else
 		skb = skb_unshare(skb, GFP_ATOMIC);
 
 	return skb;