mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-12-18 09:12:43 +01:00
wiphy: add info print for MulticastRxDisabled quirk
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.
This commit is contained in:
parent
1dd9f94713
commit
d4bba5c838
@ -1371,6 +1371,9 @@ static void wiphy_print_basic_info(struct wiphy *wiphy)
|
|||||||
if (wiphy->driver_flags & OWE_DISABLE)
|
if (wiphy->driver_flags & OWE_DISABLE)
|
||||||
flags = l_strv_append(flags, "OweDisable");
|
flags = l_strv_append(flags, "OweDisable");
|
||||||
|
|
||||||
|
if (wiphy->driver_flags & MULTICAST_RX_DISABLE)
|
||||||
|
flags = l_strv_append(flags, "MulticastRxDisable");
|
||||||
|
|
||||||
joined = l_strjoinv(flags, ' ');
|
joined = l_strjoinv(flags, ' ');
|
||||||
|
|
||||||
l_info("\tDriver Flags: %s", joined);
|
l_info("\tDriver Flags: %s", joined);
|
||||||
|
Loading…
Reference in New Issue
Block a user