[PATCH] wiphy: add info print for MulticastRxDisabled quirk
James Prestwood <[email protected]>
| Newsgroups | dev.linux.lists.iwd |
|---|---|
| Message-ID | <[email protected]> |
This was forgotten in the prior patch set. It does not change any
behavior but just adds this to the driver flags debug print when
IWD starts up.
---
src/wiphy.c | 3 +++
1 file changed, 3 insertions(+)
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);
--
2.34.1