diff options
| author | Mukul Sharma <mukul@qti.qualcomm.com> | 2016-03-07 15:33:57 +0530 |
|---|---|---|
| committer | Anjaneedevi Kapparapu <akappa@codeaurora.org> | 2016-03-22 18:10:52 +0530 |
| commit | 4cb7d48ebbea14bc091afdf5598f81bae86f3887 (patch) | |
| tree | 58ebf0a96ff6870fca31a00d8876b966959a48a1 | |
| parent | aa019441c84e181ff8ddf341b3b0aae280e68af3 (diff) | |
qcacld-2.0: Increase the MC list filter count
During driver load, host configure multicast address
filter list count as 5 though firmware support upto
16 addresses. Because of this firmware is not filtering
the address beyond 5.
As a part of this fix, increase the mc filter list count
to 16.
Change-Id: I885dfbf9ad4740c4404701a24bb8aa6eb7b2dbc6
CRs-Fixed: 986165
| -rw-r--r-- | CORE/SERVICES/COMMON/wlan_tgt_def_config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/wlan_tgt_def_config.h b/CORE/SERVICES/COMMON/wlan_tgt_def_config.h index 5a05705820a7..eff2611613a0 100644 --- a/CORE/SERVICES/COMMON/wlan_tgt_def_config.h +++ b/CORE/SERVICES/COMMON/wlan_tgt_def_config.h @@ -155,7 +155,7 @@ #define CFG_TGT_DEFAULT_MCAST2UCAST_MODE 2 #endif -#define CFG_TGT_MAX_MULTICAST_FILTER_ENTRIES 5 +#define CFG_TGT_MAX_MULTICAST_FILTER_ENTRIES 16 /* * Specify how much memory the target should allocate for a debug log of * tx PPDU meta-information (how large the PPDU was, when it was sent, |
