Message ID | 20241126192433.102300-1-prestwoj@gmail.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | wiphy: add info print for MulticastRxDisabled quirk | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
prestwoj/iwd-alpine-ci-fetch | success | Fetch PR |
prestwoj/iwd-ci-gitlint | success | GitLint |
prestwoj/iwd-ci-fetch | success | Fetch PR |
prestwoj/iwd-alpine-ci-setupell | success | Prep - Setup ELL |
prestwoj/iwd-ci-setupell | success | Prep - Setup ELL |
prestwoj/iwd-ci-makedistcheck | success | Make Distcheck |
prestwoj/iwd-ci-incremental_build | success | Incremental build not run PASS |
prestwoj/iwd-ci-build | success | Build - Configure |
prestwoj/iwd-alpine-ci-makedistcheck | success | Make Distcheck |
prestwoj/iwd-alpine-ci-incremental_build | success | Incremental build not run PASS |
prestwoj/iwd-alpine-ci-build | success | Build - Configure |
prestwoj/iwd-ci-makecheckvalgrind | success | Make Check w/Valgrind |
prestwoj/iwd-ci-clang | success | clang PASS |
prestwoj/iwd-ci-makecheck | success | Make Check |
prestwoj/iwd-alpine-ci-makecheckvalgrind | success | Make Check w/Valgrind |
prestwoj/iwd-alpine-ci-makecheck | success | Make Check |
prestwoj/iwd-ci-testrunner | success | test-runner PASS |
diff --git a/src/wiphy.c b/src/wiphy.c index 5e958d65..3d761251 100644 --- a/src/wiphy.c +++ b/src/wiphy.c @@ -1371,6 +1371,9 @@ static void wiphy_print_basic_info(struct wiphy *wiphy) if (wiphy->driver_flags & OWE_DISABLE) flags = l_strv_append(flags, "OweDisable"); + if (wiphy->driver_flags & MULTICAST_RX_DISABLE) + flags = l_strv_append(flags, "MulticastRxDisable"); + joined = l_strjoinv(flags, ' '); l_info("\tDriver Flags: %s", joined);