qcacld-3.0: hdd: Fix code indentation issues

Checkpatch identified multiple indentation issues in hdd including:
- Statements should start on a tabstop
- suspect code indent for conditional statements
- labels should not be indented

Fix these issues.

(Note that there is a false positive "labels should not be indented"
in wlan_hdd_memdump.c that should not being modified)

Change-Id: I781fb05bffe6c75183bdd45d797a248d2cd06e6b
CRs-Fixed: 2121931
diff --git a/core/hdd/src/wlan_hdd_ext_scan.c b/core/hdd/src/wlan_hdd_ext_scan.c
index 053aaa6..65e81bf 100644
--- a/core/hdd/src/wlan_hdd_ext_scan.c
+++ b/core/hdd/src/wlan_hdd_ext_scan.c
@@ -1580,11 +1580,11 @@
 	    nla_put_u32(skb, MAX_NUM_EPNO_NETS_BY_SSID,
 			data->max_number_epno_networks_by_ssid) ||
 	    nla_put_u32(skb, MAX_NUM_WHITELISTED_SSID,
-		data->max_number_of_white_listed_ssid) ||
+			data->max_number_of_white_listed_ssid) ||
 	    nla_put_u32(skb, MAX_NUM_BLACKLISTED_BSSID,
-		data->max_number_of_black_listed_bssid)) {
-			hdd_err("nla put fail");
-			goto nla_put_failure;
+			data->max_number_of_black_listed_bssid)) {
+		hdd_err("nla put fail");
+		goto nla_put_failure;
 	}
 
 	cfg80211_vendor_cmd_reply(skb);