From 00197099c050b986b7740b623dc30da04d8723ad Mon Sep 17 00:00:00 2001 From: Dennis Jeon Date: Tue, 8 Aug 2023 21:27:13 +0900 Subject: 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 --- wl_cfgvendor.c | 7 +++++++ 1 file changed, 7 insertions(+) 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; -- cgit v1.2.3