Lines Matching refs:regdom
476 const struct ieee80211_regdomain *regdom; member
495 set_regdom(request->regdom, REGD_SOURCE_INTERNAL_DB); in reg_regdb_apply()
505 static int reg_schedule_apply(const struct ieee80211_regdomain *regdom) in reg_schedule_apply() argument
511 kfree(regdom); in reg_schedule_apply()
515 request->regdom = regdom; in reg_schedule_apply()
965 struct ieee80211_regdomain *regdom; in regdb_query_country() local
968 regdom = kzalloc(struct_size(regdom, reg_rules, coll->n_rules), in regdb_query_country()
970 if (!regdom) in regdb_query_country()
973 regdom->n_reg_rules = coll->n_rules; in regdb_query_country()
974 regdom->alpha2[0] = country->alpha2[0]; in regdb_query_country()
975 regdom->alpha2[1] = country->alpha2[1]; in regdb_query_country()
976 regdom->dfs_region = coll->dfs_region; in regdb_query_country()
978 for (i = 0; i < regdom->n_reg_rules; i++) { in regdb_query_country()
982 struct ieee80211_reg_rule *rrule = ®dom->reg_rules[i]; in regdb_query_country()
1013 return reg_schedule_apply(regdom); in regdb_query_country()