Jelajahi Sumber

qcacld-3.0: Tighten the wma_tgt_cfg_cb API

Currently the function typedef wma_tgt_cfg_cb is defined with two void
pointer parameters. However the types of the two parameters are known
to both the sender and the receiver, so fully specify the types of
those parameters.

Change-Id: I7cf7178015084599061b123da7b5f1f453ec5353
CRs-Fixed: 2254954
Jeff Johnson 6 tahun lalu
induk
melakukan
8abc59300e
3 mengubah file dengan 5 tambahan dan 6 penghapusan
  1. 1 1
      core/hdd/inc/wlan_hdd_cfg.h
  2. 2 3
      core/hdd/src/wlan_hdd_main.c
  3. 2 2
      core/wma/inc/wma_types.h

+ 1 - 1
core/hdd/inc/wlan_hdd_cfg.h

@@ -15203,7 +15203,7 @@ QDF_STATUS hdd_set_idle_ps_config(struct hdd_context *hdd_ctx, bool val);
 void hdd_get_pmkid_modes(struct hdd_context *hdd_ctx,
 			 struct pmkid_mode_bits *pmkid_modes);
 
-void hdd_update_tgt_cfg(void *context, void *param);
+void hdd_update_tgt_cfg(hdd_handle_t hdd_handle, struct wma_tgt_cfg *cfg);
 
 /**
  * hdd_string_to_u8_array() - used to convert decimal string into u8 array

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

@@ -1853,11 +1853,10 @@ static void hdd_update_ra_rate_limit(struct hdd_context *hdd_ctx,
 }
 #endif
 
-void hdd_update_tgt_cfg(void *context, void *param)
+void hdd_update_tgt_cfg(hdd_handle_t hdd_handle, struct wma_tgt_cfg *cfg)
 {
 	int ret;
-	struct hdd_context *hdd_ctx = (struct hdd_context *) context;
-	struct wma_tgt_cfg *cfg = param;
+	struct hdd_context *hdd_ctx = (struct hdd_context *)hdd_handle;
 	uint8_t temp_band_cap;
 	struct cds_config_info *cds_cfg = cds_get_ini_config();
 	uint8_t antenna_mode;

+ 2 - 2
core/wma/inc/wma_types.h

@@ -607,8 +607,8 @@ typedef QDF_STATUS (*wma_tx_ota_comp_callback)(void *context, qdf_nbuf_t buf,
 
 typedef void (*wma_txFailIndCallback)(uint8_t *, uint8_t);
 
-/* generic callback for updating parameters from target to UMAC */
-typedef void (*wma_tgt_cfg_cb)(void *context, void *param);
+/* generic callback for updating parameters from target to HDD */
+typedef void (*wma_tgt_cfg_cb)(hdd_handle_t handle, struct wma_tgt_cfg *cfg);
 
 /**
  * struct wma_cli_set_cmd_t - set command parameters