|
@@ -3383,3 +3383,29 @@ enum reg_wifi_band reg_freq_to_band(uint16_t freq)
|
|
|
return REG_BAND_UNKNOWN;
|
|
|
}
|
|
|
#endif /* CONFIG_CHAN_FREQ_API */
|
|
|
+
|
|
|
+QDF_STATUS reg_set_ignore_fw_reg_offload_ind(struct wlan_objmgr_psoc *psoc)
|
|
|
+{
|
|
|
+ struct wlan_regulatory_psoc_priv_obj *psoc_reg;
|
|
|
+
|
|
|
+ psoc_reg = reg_get_psoc_obj(psoc);
|
|
|
+ if (!IS_VALID_PSOC_REG_OBJ(psoc_reg)) {
|
|
|
+ reg_err("psoc reg component is NULL");
|
|
|
+ return QDF_STATUS_E_INVAL;
|
|
|
+ }
|
|
|
+
|
|
|
+ psoc_reg->ignore_fw_reg_offload_ind = true;
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
+
|
|
|
+bool reg_get_ignore_fw_reg_offload_ind(struct wlan_objmgr_psoc *psoc)
|
|
|
+{
|
|
|
+ struct wlan_regulatory_psoc_priv_obj *psoc_reg;
|
|
|
+
|
|
|
+ psoc_reg = reg_get_psoc_obj(psoc);
|
|
|
+ if (!IS_VALID_PSOC_REG_OBJ(psoc_reg))
|
|
|
+ return false;
|
|
|
+
|
|
|
+ return psoc_reg->ignore_fw_reg_offload_ind;
|
|
|
+}
|
|
|
+
|