Lines Matching refs:alpha2
34 specific ISO/IEC 3166 alpha2.
41 The alpha2 is passed as an environment variable under the variable COUNTRY.
58 the specificied alpha2. The kernel in turn will then ask userspace
59 to provide a regulatory domain for the alpha2 specified by the user
72 They have two options -- they either provide an alpha2 so that
78 regulatory hint with an alpha2. For these drivers there is an additional
94 Example code - drivers hinting an alpha2:
99 domain value to a specific alpha2 as follows:
110 Then you can define a routine to map your read EEPROM value to an alpha2,
113 static int zd_reg2alpha2(u8 regdomain, char *alpha2)
120 alpha2[0] = reg_map->alpha2[0];
121 alpha2[1] = reg_map->alpha2[1];
128 Lastly, you can then hint to the core of your discovered alpha2, if a match
132 r = zd_reg2alpha2(mac->regdomain, alpha2);
134 regulatory_hint(hw->wiphy, alpha2);
155 .alpha2 = "JP",
156 //.alpha2 = "99", /* If I have no alpha2 to map it to */