qcacmn: Enable HW broadcast filter
Add ini to param to enable/disable HW filter for bc (except arp) frame Change-Id: Iccb68e1816c897a63414fff849f3d505ef6361e5 CRs-Fixed: 1113550
This commit is contained in:
@@ -3217,6 +3217,18 @@ QDF_STATUS wmi_unified_enable_arp_ns_offload_cmd(void *wmi_hdl,
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
||||
QDF_STATUS wmi_unified_configure_broadcast_filter_cmd(void *wmi_hdl,
|
||||
uint8_t vdev_id, bool bc_filter)
|
||||
{
|
||||
wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
|
||||
|
||||
if (wmi_handle->ops->send_enable_broadcast_filter_cmd)
|
||||
return wmi_handle->ops->send_enable_broadcast_filter_cmd(
|
||||
wmi_handle, vdev_id, bc_filter);
|
||||
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
||||
/**
|
||||
* wmi_unified_set_led_flashing_cmd() - set led flashing in fw
|
||||
* @wmi_hdl: wmi handle
|
||||
|
Reference in New Issue
Block a user