On 11/17/2023 4:08 AM, Anuj Khera wrote: > The cfg80211_pmksa structure uses bssid member to store > the PMKSA for a BSS in Station mode. Change the name of > structure member bssid to peer_addr so that same member > can be used to store the PMKSA for a station in AP mode > using station MAC address. > > Signed-off-by: Anuj Khera <quic_akhera@xxxxxxxxxxx> > --- ..snip.. > diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h > index b137a33a1b68..0bacd705c030 100644 > --- a/include/net/cfg80211.h > +++ b/include/net/cfg80211.h > @@ -3370,7 +3370,7 @@ enum wiphy_params_flags { > * threshold to generate a new PMK before the current one expires. > */ > struct cfg80211_pmksa { > - const u8 *bssid; > + const u8 *peer_addr; are you missing a related kernel-doc change?