|
@@ -2128,6 +2128,17 @@ void lim_update_stads_eht_bw_320mhz(struct pe_session *session,
|
|
|
* Return: bool
|
|
|
*/
|
|
|
bool lim_is_session_chwidth_320mhz(struct pe_session *session);
|
|
|
+
|
|
|
+/**
|
|
|
+ * lim_update_eht_caps_mcs() - update eht caps
|
|
|
+ *
|
|
|
+ * @mac: Pointer to Global mac structure
|
|
|
+ * @session: Session pointer of the interface
|
|
|
+ *
|
|
|
+ * Return: None
|
|
|
+ */
|
|
|
+void
|
|
|
+lim_update_eht_caps_mcs(struct mac_context *mac, struct pe_session *session);
|
|
|
#else
|
|
|
static inline
|
|
|
void lim_update_tdls_sta_eht_capable(struct mac_context *mac,
|
|
@@ -2313,6 +2324,11 @@ lim_is_session_chwidth_320mhz(struct pe_session *session)
|
|
|
{
|
|
|
return false;
|
|
|
}
|
|
|
+
|
|
|
+static inline void
|
|
|
+lim_update_eht_caps_mcs(struct mac_context *mac, struct pe_session *session)
|
|
|
+{
|
|
|
+}
|
|
|
#endif /* WLAN_FEATURE_11BE */
|
|
|
|
|
|
#ifdef WLAN_FEATURE_11BE_MLO
|
|
@@ -3313,16 +3329,4 @@ lim_is_chan_connected_for_mode(struct wlan_objmgr_psoc *psoc,
|
|
|
*/
|
|
|
enum phy_ch_width
|
|
|
lim_convert_vht_chwidth_to_phy_chwidth(uint8_t ch_width, bool is_40);
|
|
|
-
|
|
|
-/**
|
|
|
- * lim_update_eht_caps_mcs() - update eht caps
|
|
|
- *
|
|
|
- * @mac: Pointer to Global mac structure
|
|
|
- * @session: Session pointer of the interface
|
|
|
- *
|
|
|
- * Return: None
|
|
|
- */
|
|
|
-void lim_update_eht_caps_mcs(struct mac_context *mac,
|
|
|
- struct pe_session *session);
|
|
|
-
|
|
|
#endif /* __LIM_UTILS_H */
|