<yhchuang@xxxxxxxxxxx> writes: > From: Tzu-En Huang <tehuang@xxxxxxxxxxx> > > There are two kinds of country/regulatory efuse settings > for Realtek's chipset, one is worldwide and the other is > a specific country. For the chipset with the country setting > being a specific country, driver needs to ensure that the > setting will not be modified when connecting to an AP. > > For the chipset with the country setting is worldwide, > driver will follow the NL80211_REGDOM_SET_BY_COUNTRY_IE > regulatory notification from the mac80211 stack. > > Signed-off-by: Tzu-En Huang <tehuang@xxxxxxxxxxx> > Signed-off-by: Yan-Hsuan Chuang <yhchuang@xxxxxxxxxxx> > --- > drivers/net/wireless/realtek/rtw88/main.c | 9 +++- > drivers/net/wireless/realtek/rtw88/main.h | 2 + > drivers/net/wireless/realtek/rtw88/regd.c | 61 +++++++++++++++++++---- > 3 files changed, 59 insertions(+), 13 deletions(-) > > diff --git a/drivers/net/wireless/realtek/rtw88/main.c b/drivers/net/wireless/realtek/rtw88/main.c > index 570b2e358be4..edd490c507b5 100644 > --- a/drivers/net/wireless/realtek/rtw88/main.c > +++ b/drivers/net/wireless/realtek/rtw88/main.c > @@ -21,14 +21,17 @@ EXPORT_SYMBOL(rtw_fw_lps_deep_mode); > bool rtw_bf_support = true; > unsigned int rtw_debug_mask; > EXPORT_SYMBOL(rtw_debug_mask); > +bool rtw_allow_user_reg_set; > > module_param_named(lps_deep_mode, rtw_fw_lps_deep_mode, uint, 0644); > module_param_named(support_bf, rtw_bf_support, bool, 0644); > module_param_named(debug_mask, rtw_debug_mask, uint, 0644); > +module_param_named(allow_user_reg_set, rtw_allow_user_reg_set, bool, 0644); > > MODULE_PARM_DESC(lps_deep_mode, "Deeper PS mode. If 0, deep PS is disabled"); > MODULE_PARM_DESC(support_bf, "Set Y to enable beamformee support"); > MODULE_PARM_DESC(debug_mask, "Debugging mask"); > +MODULE_PARM_DESC(allow_user_reg_set, "Set Y to allow regulatory settings from user"); Why the module parameter? -- https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches