|
@@ -1,6 +1,6 @@
|
|
|
/*
|
|
|
* Copyright (c) 2021, The Linux Foundation. All rights reserved.
|
|
|
- * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
+ * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
*
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
@@ -122,6 +122,16 @@ int hdd_son_send_get_wifi_generic_command(struct wiphy *wiphy,
|
|
|
*/
|
|
|
uint32_t hdd_son_get_peer_max_mcs_idx(struct wlan_objmgr_vdev *vdev,
|
|
|
struct wlan_objmgr_peer *peer);
|
|
|
+
|
|
|
+/**
|
|
|
+ * hdd_son_deliver_chan_change_event() - send chan change to SON
|
|
|
+ * @adapter: pointer to adapter
|
|
|
+ * @freq: new operating channel frequency
|
|
|
+ *
|
|
|
+ * Return: 0 on success
|
|
|
+ */
|
|
|
+int hdd_son_deliver_chan_change_event(struct hdd_adapter *adapter,
|
|
|
+ qdf_freq_t freq);
|
|
|
#else
|
|
|
|
|
|
static inline void hdd_son_register_callbacks(struct hdd_context *hdd_ctx)
|
|
@@ -179,5 +189,11 @@ uint32_t hdd_son_get_peer_max_mcs_idx(struct wlan_objmgr_vdev *vdev,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+static inline
|
|
|
+int hdd_son_deliver_chan_change_event(struct hdd_adapter *adapter,
|
|
|
+ qdf_freq_t freq)
|
|
|
+{
|
|
|
+ return 0;
|
|
|
+}
|
|
|
#endif /* WLAN_FEATURE_SON */
|
|
|
#endif
|