|
@@ -120,7 +120,6 @@ struct host_fw_ver {
|
|
|
struct common_dbglog_handle;
|
|
|
struct common_hif_handle;
|
|
|
struct common_htc_handle;
|
|
|
-struct common_wmi_handle;
|
|
|
struct common_accelerator_handle;
|
|
|
|
|
|
/**
|
|
@@ -135,7 +134,7 @@ struct common_accelerator_handle;
|
|
|
struct comp_hdls {
|
|
|
struct common_hif_handle *hif_hdl;
|
|
|
struct common_htc_handle *htc_hdl;
|
|
|
- struct common_wmi_handle *wmi_hdl;
|
|
|
+ struct wmi_unified *wmi_hdl;
|
|
|
struct common_accelerator_handle *accelerator_hdl;
|
|
|
struct common_dbglog_handle *dbglog_hdl;
|
|
|
};
|
|
@@ -313,7 +312,7 @@ struct target_psoc_info {
|
|
|
* @feature_ptr: stores legacy pointer or few driver specific structures
|
|
|
*/
|
|
|
struct target_pdev_info {
|
|
|
- struct common_wmi_handle *wmi_handle;
|
|
|
+ struct wmi_unified *wmi_handle;
|
|
|
struct common_accelerator_handle *accelerator_hdl;
|
|
|
int32_t pdev_idx;
|
|
|
int32_t phy_idx;
|
|
@@ -956,7 +955,7 @@ static inline struct common_htc_handle *target_psoc_get_htc_hdl
|
|
|
*/
|
|
|
static inline void target_psoc_set_wmi_hdl
|
|
|
(struct target_psoc_info *psoc_info,
|
|
|
- struct common_wmi_handle *wmi_hdl)
|
|
|
+ struct wmi_unified *wmi_hdl)
|
|
|
{
|
|
|
if (!psoc_info)
|
|
|
return;
|
|
@@ -972,7 +971,7 @@ static inline void target_psoc_set_wmi_hdl
|
|
|
*
|
|
|
* Return: wmi_hdl
|
|
|
*/
|
|
|
-static inline struct common_wmi_handle *target_psoc_get_wmi_hdl
|
|
|
+static inline struct wmi_unified *target_psoc_get_wmi_hdl
|
|
|
(struct target_psoc_info *psoc_info)
|
|
|
{
|
|
|
if (!psoc_info)
|
|
@@ -1386,7 +1385,7 @@ static inline void *target_pdev_get_feature_ptr
|
|
|
*/
|
|
|
static inline void target_pdev_set_wmi_handle
|
|
|
(struct target_pdev_info *pdev_info,
|
|
|
- struct common_wmi_handle *wmi_handle)
|
|
|
+ struct wmi_unified *wmi_handle)
|
|
|
{
|
|
|
if (!pdev_info)
|
|
|
return;
|
|
@@ -1402,7 +1401,7 @@ static inline void target_pdev_set_wmi_handle
|
|
|
*
|
|
|
* Return: wmi_handle
|
|
|
*/
|
|
|
-static inline struct common_wmi_handle *target_pdev_get_wmi_handle
|
|
|
+static inline struct wmi_unified *target_pdev_get_wmi_handle
|
|
|
(struct target_pdev_info *pdev_info)
|
|
|
{
|
|
|
if (!pdev_info)
|
|
@@ -1526,7 +1525,7 @@ static inline int32_t target_pdev_get_phy_idx
|
|
|
* Return: wmi_handle on success
|
|
|
* if tgt handle is not initialized, it returns NULL
|
|
|
*/
|
|
|
-static inline struct common_wmi_handle *GET_WMI_HDL_FROM_PSOC(
|
|
|
+static inline struct wmi_unified *GET_WMI_HDL_FROM_PSOC(
|
|
|
struct wlan_objmgr_psoc *psoc)
|
|
|
{
|
|
|
void *tgt_if_handle;
|
|
@@ -1553,7 +1552,7 @@ static inline struct common_wmi_handle *GET_WMI_HDL_FROM_PSOC(
|
|
|
* Return: wmi_handle on success
|
|
|
* if tgt handle is not initialized, it returns NULL
|
|
|
*/
|
|
|
-static inline struct common_wmi_handle *GET_WMI_HDL_FROM_PDEV(
|
|
|
+static inline struct wmi_unified *GET_WMI_HDL_FROM_PDEV(
|
|
|
struct wlan_objmgr_pdev *pdev)
|
|
|
{
|
|
|
void *tgt_if_handle;
|