qcacld-3.0: Replace hdd_adapter_t in wlan_hdd_nan_datapath.[ch]

The Linux Coding Style enumerates a few special cases where typedefs
are useful, but stresses "NEVER EVER use a typedef unless you can
clearly match one of those rules." The hdd_adapter_t typedef does not
meet any of those criteria, so replace references to it with a
reference to the underlying struct.

Change-Id: I2e588aeaf26b85535afa86132aa4216ea630e958
CRs-Fixed: 2101049
diff --git a/core/hdd/src/wlan_hdd_nan_datapath.h b/core/hdd/src/wlan_hdd_nan_datapath.h
index 1a89ba7..160a625 100644
--- a/core/hdd/src/wlan_hdd_nan_datapath.h
+++ b/core/hdd/src/wlan_hdd_nan_datapath.h
@@ -218,7 +218,7 @@
 int wlan_hdd_cfg80211_process_ndp_cmd(struct wiphy *wiphy,
 	struct wireless_dev *wdev, const void *data, int data_len);
 int hdd_init_nan_data_mode(struct hdd_adapter *adapter);
-void hdd_ndp_session_end_handler(hdd_adapter_t *adapter);
+void hdd_ndp_session_end_handler(struct hdd_adapter *adapter);
 #else
 static inline void hdd_ndp_print_ini_config(struct hdd_context *hdd_ctx)
 {
@@ -241,7 +241,7 @@
 {
 	return 0;
 }
-static inline void hdd_ndp_session_end_handler(hdd_adapter_t *adapter)
+static inline void hdd_ndp_session_end_handler(struct hdd_adapter *adapter)
 {
 }
 #endif /* WLAN_FEATURE_NAN_DATAPATH */