Path: blob/main/sys/contrib/dev/iwlwifi/mld/power.h
48286 views
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */1/*2* Copyright (C) 2024 Intel Corporation3*/4#ifndef __iwl_mld_power_h__5#define __iwl_mld_power_h__67#include <net/mac80211.h>89#include "mld.h"1011int iwl_mld_update_device_power(struct iwl_mld *mld, bool d3);1213int iwl_mld_enable_beacon_filter(struct iwl_mld *mld,14const struct ieee80211_bss_conf *link_conf,15bool d3);1617int iwl_mld_disable_beacon_filter(struct iwl_mld *mld,18struct ieee80211_vif *vif);1920int iwl_mld_update_mac_power(struct iwl_mld *mld, struct ieee80211_vif *vif,21bool d3);2223void24iwl_mld_send_ap_tx_power_constraint_cmd(struct iwl_mld *mld,25struct ieee80211_vif *vif,26struct ieee80211_bss_conf *link);2728int iwl_mld_set_tx_power(struct iwl_mld *mld,29struct ieee80211_bss_conf *link_conf,30s16 tx_power);3132#endif /* __iwl_mld_power_h__ */333435