} __packed;
 
 /**
- * ieee80211_mle_sta_prof_size_ok - validate multi-link element sta profile size
+ * ieee80211_mle_basic_sta_prof_size_ok - validate basic multi-link element sta
+ *     profile size
  * @data: pointer to the sub element data
  * @len: length of the containing sub element
  */
-static inline bool ieee80211_mle_sta_prof_size_ok(const u8 *data, size_t len)
+static inline bool ieee80211_mle_basic_sta_prof_size_ok(const u8 *data,
+                                                       size_t len)
 {
        const struct ieee80211_mle_per_sta_profile *prof = (const void *)data;
        u16 control;
 
                if (sub->id != IEEE80211_MLE_SUBELEM_PER_STA_PROFILE)
                        continue;
 
-               if (!ieee80211_mle_sta_prof_size_ok(sub->data, sub->datalen))
+               if (!ieee80211_mle_basic_sta_prof_size_ok(sub->data,
+                                                         sub->datalen))
                        return;
 
                control = le16_to_cpu(prof->control);