summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDennis Jeon <dennis.jeon@broadcom.corp-partner.google.com>2023-08-08 21:27:13 +0900
committerIsaac Chiou <isaacchiou@google.com>2023-08-14 05:32:55 +0000
commit00197099c050b986b7740b623dc30da04d8723ad (patch)
tree021a68d2d0c722622887d3f1ffd057cef4a5f9f3
parentc44220c5739d1c31888f381e10e5cca4cb278892 (diff)
downloadbcm4389-00197099c050b986b7740b623dc30da04d8723ad.tar.gz
bcmdhd: Skip Android-U attribute (NAN_ATTRIBUTE_INST_ID) processing
HAL change (pa/2468396) for P23 makes this ACT failure issue since P22/P23 are using common HAL code Bug: 292490695 Test: passed in b/292490695#comment13 Change-Id: Ic4b5dc1e372f59644410d7f3758d83955eb25a8a Signed-off-by: Dennis Jeon <dennis.jeon@broadcom.corp-partner.google.com>
-rwxr-xr-xwl_cfgvendor.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/wl_cfgvendor.c b/wl_cfgvendor.c
index 24f8323..da8ee12 100755
--- a/wl_cfgvendor.c
+++ b/wl_cfgvendor.c
@@ -4446,6 +4446,9 @@ wl_cfgvendor_nan_parse_datapath_args(struct wiphy *wiphy,
return ret;
}
break;
+ case NAN_ATTRIBUTE_INST_ID:
+ /* Skip */
+ break;
default:
WL_ERR(("Unknown type, %d\n", attr_type));
ret = -EINVAL;
@@ -5159,6 +5162,10 @@ wl_cfgvendor_nan_parse_args(struct wiphy *wiphy, const void *buf,
switch (attr_type) {
/* NAN Enable request attributes */
+ case NAN_ATTRIBUTE_INST_ID: {
+ /* Skip */
+ break;
+ }
case NAN_ATTRIBUTE_2G_SUPPORT:{
if (nla_len(iter) != sizeof(uint8)) {
ret = -EINVAL;