qcacmn: Add support for multiple vdev set param WMI API

Add support for multi vdev set param WMI API to send vdev param for
multiple vaps.

Change-Id: If7381f0b242cacff0817e6bdc16606d3d776b48d
CRs-Fixed: 2994278
This commit is contained in:
Shashikala Prabhu
2021-07-29 12:41:23 +05:30
committed by Madan Koyyalamudi
parent 58023bfff8
commit b2f8ff4e7f
4 changed files with 46 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2016-2020 The Linux Foundation. All rights reserved.
* Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the
@@ -59,6 +59,17 @@ QDF_STATUS wmi_unified_send_multiple_vdev_restart_req_cmd(
return QDF_STATUS_E_FAILURE;
}
QDF_STATUS wmi_unified_send_multiple_vdev_set_param_cmd(
struct wmi_unified *wmi_handle,
struct multiple_vdev_set_param *param)
{
if (wmi_handle->ops->send_multiple_vdev_set_param_cmd)
return wmi_handle->ops->send_multiple_vdev_set_param_cmd(
wmi_handle, param);
return QDF_STATUS_E_FAILURE;
}
QDF_STATUS wmi_unified_beacon_send_cmd(struct wmi_unified *wmi_handle,
struct beacon_params *param)
{