mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 21:51:40 +00:00
cfg80211: reg: rename reg_call_crda to reg_query_database
The new name is more appropriate since in the case of a built-in database it may not really rely on CRDA. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
25b20dbdc4
commit
cecbb069cc
@ -554,7 +554,7 @@ static int call_crda(const char *alpha2)
|
||||
return kobject_uevent_env(®_pdev->dev.kobj, KOBJ_CHANGE, env);
|
||||
}
|
||||
|
||||
static bool reg_call_crda(struct regulatory_request *request)
|
||||
static bool reg_query_database(struct regulatory_request *request)
|
||||
{
|
||||
if (call_crda(request->alpha2))
|
||||
return false;
|
||||
@ -1857,7 +1857,7 @@ static void reg_set_request_processed(void)
|
||||
*/
|
||||
static void reg_process_hint_core(struct regulatory_request *core_request)
|
||||
{
|
||||
if (reg_call_crda(core_request)) {
|
||||
if (reg_query_database(core_request)) {
|
||||
core_request->intersect = false;
|
||||
core_request->processed = false;
|
||||
reg_update_last_request(core_request);
|
||||
@ -1921,7 +1921,7 @@ static void reg_process_hint_user(struct regulatory_request *user_request)
|
||||
user_request->intersect = treatment == REG_REQ_INTERSECT;
|
||||
user_request->processed = false;
|
||||
|
||||
if (reg_call_crda(user_request)) {
|
||||
if (reg_query_database(user_request)) {
|
||||
reg_update_last_request(user_request);
|
||||
user_alpha2[0] = user_request->alpha2[0];
|
||||
user_alpha2[1] = user_request->alpha2[1];
|
||||
@ -2007,7 +2007,7 @@ reg_process_hint_driver(struct wiphy *wiphy,
|
||||
return treatment;
|
||||
}
|
||||
|
||||
if (reg_call_crda(driver_request))
|
||||
if (reg_query_database(driver_request))
|
||||
reg_update_last_request(driver_request);
|
||||
else
|
||||
reg_free_request(driver_request);
|
||||
@ -2095,7 +2095,7 @@ reg_process_hint_country_ie(struct wiphy *wiphy,
|
||||
country_ie_request->intersect = false;
|
||||
country_ie_request->processed = false;
|
||||
|
||||
if (reg_call_crda(country_ie_request))
|
||||
if (reg_query_database(country_ie_request))
|
||||
reg_update_last_request(country_ie_request);
|
||||
else
|
||||
reg_free_request(country_ie_request);
|
||||
|
Loading…
Reference in New Issue
Block a user