From b993b0cca3642e3edfc66025836b3e9c6fe799b0 Mon Sep 17 00:00:00 2001 From: Vignesh Mohan Date: Tue, 4 Dec 2018 17:32:11 +0530 Subject: [PATCH] qcacmn: Fix pdev param enum after maximum value the enum for subchannel marking pdev param is after the maximum value. Re-enumerate the enum so that the pdev param max points to the last value. Change-Id: I9ecf616a13b3b73b3aafb0f6dfdfbf6eda29f4dd CRs-Fixed: 2334258 --- wmi_unified_param.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wmi_unified_param.h b/wmi_unified_param.h index 0bb635f8ba..06597836df 100644 --- a/wmi_unified_param.h +++ b/wmi_unified_param.h @@ -4961,8 +4961,8 @@ typedef enum { wmi_pdev_param_use_nol, wmi_pdev_param_enable_peer_retry_stats, wmi_pdev_param_ul_trig_int, - wmi_pdev_param_max, wmi_pdev_param_sub_channel_marking, + wmi_pdev_param_max, } wmi_conv_pdev_params_id;