Message ID | 20240415151130.40389-2-prestwoj@gmail.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [1/3] band: return -ENOTSUP when RSSI is too low for rate estimation | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
prestwoj/iwd-ci-gitlint | success | GitLint |
diff --git a/src/scan.c b/src/scan.c index f48ffdef..a22cc27a 100644 --- a/src/scan.c +++ b/src/scan.c @@ -1608,7 +1608,7 @@ static struct scan_bss *scan_parse_attr_bss(struct l_genl_attr *attr, ret = wiphy_estimate_data_rate(wiphy, ies, ies_len, bss, &bss->data_rate); - if (ret < 0 && ret != -ENETUNREACH) + if (ret < 0 && ret != -ENOTSUP) l_warn("wiphy_estimate_data_rate() failed"); }