Lines Matching refs:regdom
450 const struct ieee80211_regdomain *regdom; member
469 set_regdom(request->regdom, REGD_SOURCE_INTERNAL_DB); in reg_regdb_apply()
479 static int reg_schedule_apply(const struct ieee80211_regdomain *regdom) in reg_schedule_apply() argument
485 kfree(regdom); in reg_schedule_apply()
489 request->regdom = regdom; in reg_schedule_apply()
929 struct ieee80211_regdomain *regdom; in regdb_query_country() local
935 regdom = kzalloc(size_of_regd, GFP_KERNEL); in regdb_query_country()
936 if (!regdom) in regdb_query_country()
939 regdom->n_reg_rules = coll->n_rules; in regdb_query_country()
940 regdom->alpha2[0] = country->alpha2[0]; in regdb_query_country()
941 regdom->alpha2[1] = country->alpha2[1]; in regdb_query_country()
942 regdom->dfs_region = coll->dfs_region; in regdb_query_country()
944 for (i = 0; i < regdom->n_reg_rules; i++) { in regdb_query_country()
948 struct ieee80211_reg_rule *rrule = ®dom->reg_rules[i]; in regdb_query_country()
983 return reg_schedule_apply(regdom); in regdb_query_country()