aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Hibbits <jhibbits@FreeBSD.org>2024-11-12 15:01:00 +0000
committerJustin Hibbits <jhibbits@FreeBSD.org>2024-11-13 19:31:20 +0000
commit57609cb2de149a3c99c43e98d37cfa4784958f73 (patch)
treed217f49f8b32c4091f75d1ab81efdf3f25b339f7
parent4d0c95384f9b2c2691459f22d68f0a2c8b2383c9 (diff)
LinuxKPI: Use IfAPI to get LLADDR
Reviewed by: bz, emaste Differential Revision: https://reviews.freebsd.org/D47525
-rw-r--r--sys/compat/linuxkpi/common/src/linux_80211.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/compat/linuxkpi/common/src/linux_80211.c b/sys/compat/linuxkpi/common/src/linux_80211.c
index 9d0166829d52..543a11b1f729 100644
--- a/sys/compat/linuxkpi/common/src/linux_80211.c
+++ b/sys/compat/linuxkpi/common/src/linux_80211.c
@@ -2783,7 +2783,7 @@ lkpi_vif_iflladdr(void *arg, struct ifnet *ifp)
}
vif = arg;
- IEEE80211_ADDR_COPY(vif->bss_conf.addr, IF_LLADDR(ifp));
+ IEEE80211_ADDR_COPY(vif->bss_conf.addr, if_getlladdr(ifp));
NET_EPOCH_EXIT(et);
}