Luis? > if (!regdom_changes(rd->alpha2)) > - return -EINVAL; > + return -EALREADY; > } > > /* > @@ -2325,6 +2325,9 @@ int set_regdom(const struct ieee80211_regdomain *rd) > /* Note that this doesn't update the wiphys, this is done below */ > r = __set_regdom(rd); > if (r) { > + if (r == -EALREADY) > + reg_set_request_processed(); > + I'm not really sure I like the reliance on the error code ... would it make more sense to invent a status enum? Or just return 0 to start with? johannes -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html