Browse Source

qcacld-3.0: Enable QDF ID allocation API

Enable QDF ID allocation API in Kbuild.

Change-Id: Id43b16175e59f40ad111b03439f34d63ea14c627
CRs-Fixed: 2242753
Wu Gao 7 years ago
parent
commit
24466e3693
2 changed files with 4 additions and 2 deletions
  1. 1 0
      Kbuild
  2. 3 2
      core/hdd/src/wlan_hdd_p2p.c

+ 1 - 0
Kbuild

@@ -982,6 +982,7 @@ QDF_OBJS := 	$(QDF_LINUX_OBJ_DIR)/qdf_defer.o \
 		$(QDF_LINUX_OBJ_DIR)/qdf_threads.o \
 		$(QDF_LINUX_OBJ_DIR)/qdf_crypto.o \
 		$(QDF_LINUX_OBJ_DIR)/qdf_trace.o \
+		$(QDF_LINUX_OBJ_DIR)/qdf_idr.o \
 		$(QDF_OBJ_DIR)/qdf_flex_mem.o \
 		$(QDF_OBJ_DIR)/qdf_parse.o \
 		$(QDF_OBJ_DIR)/qdf_platform.o \

+ 3 - 2
core/hdd/src/wlan_hdd_p2p.c

@@ -144,7 +144,8 @@ static int __wlan_hdd_cfg80211_remain_on_channel(struct wiphy *wiphy,
 
 	status = wlan_cfg80211_roc(adapter->hdd_vdev, chan,
 				duration, cookie);
-	hdd_debug("remain on channel request, status:%d", status);
+	hdd_debug("remain on channel request, status:%d, cookie:0x%llx",
+			status, *cookie);
 
 	return qdf_status_to_os_return(status);
 }
@@ -264,7 +265,7 @@ static int __wlan_hdd_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
 	status = wlan_cfg80211_mgmt_tx(adapter->hdd_vdev, chan,
 			offchan, wait, buf, len, no_cck,
 			dont_wait_for_ack, cookie);
-	hdd_debug("mgmt tx, status:%d", status);
+	hdd_debug("mgmt tx, status:%d, cookie:0x%llx", status, *cookie);
 
 	return 0;
 }