diff options
| author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2026-01-29 11:17:25 +0000 |
|---|---|---|
| committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2026-01-29 18:07:43 +0000 |
| commit | 5cfe09e3a442347fe408fa95126dfbc051d064c3 (patch) | |
| tree | d9bfdd1d0d55b20d2d0c0a34bba66e590ee33f9e /sys/compat | |
| parent | 0762cf10fc5e426700e00f9060518241212e941f (diff) | |
Diffstat (limited to 'sys/compat')
| -rw-r--r-- | sys/compat/linuxkpi/common/src/linux_80211.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/compat/linuxkpi/common/src/linux_80211.c b/sys/compat/linuxkpi/common/src/linux_80211.c index d25b32f1dae8..4ce0a2094adb 100644 --- a/sys/compat/linuxkpi/common/src/linux_80211.c +++ b/sys/compat/linuxkpi/common/src/linux_80211.c @@ -6972,7 +6972,9 @@ linuxkpi_ieee80211_ifattach(struct ieee80211_hw *hw) } if (bootverbose) { - ic_printf(ic, "netdev_features %b\n", hw->netdev_features, NETIF_F_BITS); + if (hw->netdev_features != 0) + ic_printf(ic, "netdev_features %b\n", + hw->netdev_features, NETIF_F_BITS); ieee80211_announce(ic); } |
