qcacld-3.0: Fix block comments in wlan_hdd_scan.c

A checkpatch run on the HDD component has produced numerous
warnings about improper block comments:
WARNING: Block comments use * on subsequent lines
WARNING: Block comments should align the * on each line
WARNING: Block comments use a trailing */ on a separate line

Fix all such warnings in wlan_hdd_scan.c.

Change-Id: I75cd166615bc5efd6436de5977095e71bccfc7fc
CRs-Fixed: 1110861
diff --git a/core/hdd/src/wlan_hdd_scan.c b/core/hdd/src/wlan_hdd_scan.c
index 53993da..6792dd0 100644
--- a/core/hdd/src/wlan_hdd_scan.c
+++ b/core/hdd/src/wlan_hdd_scan.c
@@ -319,10 +319,12 @@
 	ie_length = GET_IE_LEN_IN_BSS(descriptor->length);
 
 	if (ie_length > 0) {
-		/* dot11BeaconIEs is a large struct, so we make it static to
-		   avoid stack overflow.  This API is only invoked via ioctl,
-		   so it is serialized by the kernel rtnl_lock and hence does
-		   not need to be reentrant */
+		/*
+		 * dot11BeaconIEs is a large struct, so we make it static to
+		 * avoid stack overflow.  This API is only invoked via ioctl,
+		 * so it is serialized by the kernel rtnl_lock and hence does
+		 * not need to be reentrant
+		 */
 		static tDot11fBeaconIEs dot11BeaconIEs;
 		tDot11fIESSID *pDot11SSID;
 		tDot11fIESuppRates *pDot11SuppRates;
@@ -2504,8 +2506,10 @@
 		goto error;
 	}
 
-	/* Framework provides one set of channels(all)
-	 * common for all saved profile */
+	/*
+	 * Framework provides one set of channels(all)
+	 * common for all saved profile
+	 */
 	if (0 != sme_cfg_get_str(hHal, WNI_CFG_VALID_CHANNEL_LIST,
 				 channels_allowed, &num_channels_allowed)) {
 		hdd_err("failed to get valid channel list");