qcacld-3.0: Rename ENTER/EXIT macros (part 3)

In order to better align with the rest of the driver, rename the
following macros:
 * ENTER -> hdd_enter
 * ENTER_DEV -> hdd_enter_dev
 * EXIT -> hdd_exit

For part 3, migrate usages of EXIT

Change-Id: I0868800b694c92d2ad157394d619c05f89dd222d
CRs-Fixed: 2205840
diff --git a/core/hdd/src/wlan_hdd_nan_datapath.c b/core/hdd/src/wlan_hdd_nan_datapath.c
index 9cb61a5..1cf428b 100644
--- a/core/hdd/src/wlan_hdd_nan_datapath.c
+++ b/core/hdd/src/wlan_hdd_nan_datapath.c
@@ -116,7 +116,7 @@
 	/* We are good to close the adapter */
 	hdd_close_adapter(hdd_ctx, adapter, true);
 
-	EXIT();
+	hdd_exit();
 	return 0;
 }
 
@@ -229,7 +229,7 @@
 	roam_profile->ChannelInfo.ChannelList = NULL;
 	roam_profile->ChannelInfo.numOfChannels = 0;
 
-	EXIT();
+	hdd_exit();
 
 	return ret;
 }
@@ -501,7 +501,7 @@
 		return NULL;
 	}
 
-	EXIT();
+	hdd_exit();
 	return adapter->hdd_vdev;
 }
 
@@ -542,11 +542,11 @@
 		hdd_err("NDI start bss failed");
 		/* Start BSS failed, delete the interface */
 		hdd_close_ndi(adapter);
-		EXIT();
+		hdd_exit();
 		return -EINVAL;
 	}
 
-	EXIT();
+	hdd_exit();
 	return 0;
 }
 
@@ -775,7 +775,7 @@
 		wlan_hdd_netif_queue_control(adapter,
 				WLAN_WAKE_ALL_NETIF_QUEUE, WLAN_CONTROL_PATH);
 	}
-	EXIT();
+	hdd_exit();
 	return 0;
 }
 
@@ -827,5 +827,5 @@
 		wlan_hdd_netif_queue_control(adapter, WLAN_STOP_ALL_NETIF_QUEUE,
 					     WLAN_CONTROL_PATH);
 	}
-	EXIT();
+	hdd_exit();
 }