Lines Matching refs:regdom
477 const struct ieee80211_regdomain *regdom; member
496 set_regdom(request->regdom, REGD_SOURCE_INTERNAL_DB); in reg_regdb_apply()
506 static int reg_schedule_apply(const struct ieee80211_regdomain *regdom) in reg_schedule_apply() argument
512 kfree(regdom); in reg_schedule_apply()
516 request->regdom = regdom; in reg_schedule_apply()
968 struct ieee80211_regdomain *regdom; in regdb_query_country() local
971 regdom = kzalloc(struct_size(regdom, reg_rules, coll->n_rules), in regdb_query_country()
973 if (!regdom) in regdb_query_country()
976 regdom->n_reg_rules = coll->n_rules; in regdb_query_country()
977 regdom->alpha2[0] = country->alpha2[0]; in regdb_query_country()
978 regdom->alpha2[1] = country->alpha2[1]; in regdb_query_country()
979 regdom->dfs_region = coll->dfs_region; in regdb_query_country()
981 for (i = 0; i < regdom->n_reg_rules; i++) { in regdb_query_country()
985 struct ieee80211_reg_rule *rrule = ®dom->reg_rules[i]; in regdb_query_country()
1016 return reg_schedule_apply(regdom); in regdb_query_country()