Lines Matching refs:alpha2
45 specific ISO/IEC 3166 alpha2.
52 The alpha2 is passed as an environment variable under the variable COUNTRY.
69 the specified alpha2. The kernel in turn will then ask userspace
70 to provide a regulatory domain for the alpha2 specified by the user
83 They have two options -- they either provide an alpha2 so that
89 regulatory hint with an alpha2. For these drivers there is an additional
105 Example code - drivers hinting an alpha2:
110 domain value to a specific alpha2 as follows::
121 Then you can define a routine to map your read EEPROM value to an alpha2,
124 static int zd_reg2alpha2(u8 regdomain, char *alpha2)
131 alpha2[0] = reg_map->alpha2[0];
132 alpha2[1] = reg_map->alpha2[1];
139 Lastly, you can then hint to the core of your discovered alpha2, if a match
145 r = zd_reg2alpha2(mac->regdomain, alpha2);
147 regulatory_hint(hw->wiphy, alpha2);
168 .alpha2 = "JP",
169 //.alpha2 = "99", /* If I have no alpha2 to map it to */