Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/contrib/dev/iwlwifi/mld/regulatory.h
48287 views
1
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
2
/*
3
* Copyright (C) 2024-2025 Intel Corporation
4
*/
5
#ifndef __iwl_mld_regulatory_h__
6
#define __iwl_mld_regulatory_h__
7
8
#include "mld.h"
9
10
void iwl_mld_get_bios_tables(struct iwl_mld *mld);
11
void iwl_mld_configure_lari(struct iwl_mld *mld);
12
void iwl_mld_init_uats(struct iwl_mld *mld);
13
void iwl_mld_init_tas(struct iwl_mld *mld);
14
15
int iwl_mld_init_ppag(struct iwl_mld *mld);
16
17
int iwl_mld_init_sgom(struct iwl_mld *mld);
18
19
int iwl_mld_init_sar(struct iwl_mld *mld);
20
21
int iwl_mld_config_sar_profile(struct iwl_mld *mld, int prof_a, int prof_b);
22
23
#endif /* __iwl_mld_regulatory_h__ */
24
25