qcacld-3.0: Add a check for WLM latency manager support

Currently there is no check for WLM latency manager support,
while setting the latency level which may lead to undefined behavior.
To address the above issue add a check for WLM latency manager support
and return not supported to userspace.

Change-Id: Id095f162c1202c0a0926f4f73e553f46d4980543
CRs-Fixed: 2762357
Esse commit está contido em:
Arun Kumar Khandavalli
2020-08-25 15:18:08 +05:30
commit de snandini
commit 09ec38e32f

Ver arquivo

@@ -8068,7 +8068,7 @@ static int hdd_config_latency_level(struct hdd_adapter *adapter,
QDF_STATUS status;
if (!hdd_is_wlm_latency_manager_supported(hdd_ctx))
return -EINVAL;
return -ENOTSUPP;
latency_level = nla_get_u16(attr);
switch (latency_level) {