From d4bba5c8387e07b59d2294509db443ebb2a6e9b5 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Tue, 26 Nov 2024 11:24:33 -0800 Subject: [PATCH] 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. --- 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);