Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/contrib/dev/mediatek/mt76/mt7925/regd.h
96365 views
1
/* SPDX-License-Identifier: BSD-3-Clause-Clear */
2
/* Copyright (C) 2025 MediaTek Inc. */
3
4
#ifndef __MT7925_REGD_H
5
#define __MT7925_REGD_H
6
7
#include "mt7925.h"
8
9
int mt7925_mcu_regd_update(struct mt792x_dev *dev, u8 *alpha2,
10
enum environment_cap country_ie_env);
11
12
void mt7925_regd_be_ctrl(struct mt792x_dev *dev, u8 *alpha2);
13
void mt7925_regd_notifier(struct wiphy *wiphy, struct regulatory_request *req);
14
bool mt7925_regd_clc_supported(struct mt792x_dev *dev);
15
int mt7925_regd_change(struct mt792x_phy *phy, char *alpha2);
16
int mt7925_regd_init(struct mt792x_phy *phy);
17
18
#endif
19
20
21