Parcourir la source

qcacld-3.0: Replace typedef tSirAutoShutdownCmdParams

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 tSirAutoShutdownCmdParams
typedef does not meet any of those criteria, so replace it with a
properly named struct.

Change-Id: Ia15a4cb0cfd3ef8868aaa7eaa77cd5dbb44423d0
CRs-Fixed: 2400334
Jeff Johnson il y a 6 ans
Parent
commit
a9ade7d8d4

+ 2 - 2
core/mac/inc/sir_api.h

@@ -3474,9 +3474,9 @@ struct wifi_passpoint_match {
 #endif /* FEATURE_WLAN_EXTSCAN */
 
 #ifdef FEATURE_WLAN_AUTO_SHUTDOWN
-typedef struct {
+struct auto_shutdown_cmd {
 	uint32_t timer_val;
-} tSirAutoShutdownCmdParams;
+};
 #endif
 
 #ifdef WLAN_POWER_DEBUGFS

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

@@ -8477,12 +8477,12 @@ QDF_STATUS sme_set_auto_shutdown_timer(mac_handle_t mac_handle,
 	QDF_STATUS status = QDF_STATUS_SUCCESS;
 	QDF_STATUS qdf_status = QDF_STATUS_SUCCESS;
 	struct mac_context *mac = MAC_CONTEXT(mac_handle);
-	tSirAutoShutdownCmdParams *auto_sh_cmd;
+	struct auto_shutdown_cmd *auto_sh_cmd;
 	struct scheduler_msg message = {0};
 
 	status = sme_acquire_global_lock(&mac->sme);
 	if (QDF_STATUS_SUCCESS == status) {
-		auto_sh_cmd = qdf_mem_malloc(sizeof(tSirAutoShutdownCmdParams));
+		auto_sh_cmd = qdf_mem_malloc(sizeof(*auto_sh_cmd));
 		if (!auto_sh_cmd) {
 			sme_release_global_lock(&mac->sme);
 			return QDF_STATUS_E_NOMEM;

+ 10 - 3
core/wma/inc/wma_internal.h

@@ -1194,9 +1194,16 @@ QDF_STATUS wma_set_app_type2_params_in_fw(tp_wma_handle wma,
 int wma_auto_shutdown_event_handler(void *handle, uint8_t *event,
 				    uint32_t len);
 
-QDF_STATUS wma_set_auto_shutdown_timer_req(tp_wma_handle wma_handle,
-					   tSirAutoShutdownCmdParams *
-					   auto_sh_cmd);
+/**
+ * wma_set_auto_shutdown_timer_req() - sets auto shutdown timer in firmware
+ * @wma_handle: wma handle
+ * @auto_sh_cmd: auto shutdown timer params
+ *
+ * Return: QDF status
+ */
+QDF_STATUS
+wma_set_auto_shutdown_timer_req(tp_wma_handle wma_handle,
+				struct auto_shutdown_cmd *auto_sh_cmd);
 #endif
 
 #ifdef WLAN_FEATURE_TSF

+ 4 - 11
core/wma/src/wma_features.c

@@ -3817,16 +3817,9 @@ int wma_auto_shutdown_event_handler(void *handle, uint8_t *event,
 	return wma_wake_reason_auto_shutdown();
 }
 
-/**
- * wma_set_auto_shutdown_timer_req() - sets auto shutdown timer in firmware
- * @wma: wma handle
- * @auto_sh_cmd: auto shutdown timer value
- *
- * Return: QDF status
- */
-QDF_STATUS wma_set_auto_shutdown_timer_req(tp_wma_handle wma_handle,
-						  tSirAutoShutdownCmdParams *
-						  auto_sh_cmd)
+QDF_STATUS
+wma_set_auto_shutdown_timer_req(tp_wma_handle wma_handle,
+				struct auto_shutdown_cmd *auto_sh_cmd)
 {
 	if (auto_sh_cmd == NULL) {
 		WMA_LOGE("%s : Invalid Autoshutdown cfg cmd", __func__);
@@ -3834,7 +3827,7 @@ QDF_STATUS wma_set_auto_shutdown_timer_req(tp_wma_handle wma_handle,
 	}
 
 	return wmi_unified_set_auto_shutdown_timer_cmd(wma_handle->wmi_handle,
-					auto_sh_cmd->timer_val);
+						       auto_sh_cmd->timer_val);
 }
 #endif /* FEATURE_WLAN_AUTO_SHUTDOWN */