瀏覽代碼

qcacld-3.0: Fix sme_get_status_for_candidate() prototype

The hal param to sme_get_status_for_candidate() is incorrectly typed
to be a pointer to a tHalHandle when it should just be a tHalHandle,
so fix it.

Change-Id: I8799c334de58e196c1fcef2889fef4d9931b91f4
CRs-Fixed: 2255549
Jeff Johnson 6 年之前
父節點
當前提交
22256fe28a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/sme/src/common/sme_api.c

+ 1 - 1
core/sme/src/common/sme_api.c

@@ -15769,7 +15769,7 @@ QDF_STATUS sme_send_limit_off_channel_params(tHalHandle hal, uint8_t vdev_id,
  * Return : true if candidate is rejected and reject reason is filled
  * @info->status. Otherwise returns false.
  */
-static bool sme_get_status_for_candidate(tHalHandle *hal,
+static bool sme_get_status_for_candidate(tHalHandle hal,
 					tSirBssDescription *conn_bss_desc,
 					tSirBssDescription *bss_desc,
 					struct bss_candidate_info *info,