Lines Matching refs:alpha2
42 specific ISO/IEC 3166 alpha2.
49 The alpha2 is passed as an environment variable under the variable COUNTRY.
66 the specificied alpha2. The kernel in turn will then ask userspace
67 to provide a regulatory domain for the alpha2 specified by the user
80 They have two options -- they either provide an alpha2 so that
86 regulatory hint with an alpha2. For these drivers there is an additional
102 Example code - drivers hinting an alpha2:
107 domain value to a specific alpha2 as follows:
118 Then you can define a routine to map your read EEPROM value to an alpha2,
121 static int zd_reg2alpha2(u8 regdomain, char *alpha2)
128 alpha2[0] = reg_map->alpha2[0];
129 alpha2[1] = reg_map->alpha2[1];
136 Lastly, you can then hint to the core of your discovered alpha2, if a match
140 r = zd_reg2alpha2(mac->regdomain, alpha2);
142 regulatory_hint(hw->wiphy, alpha2);
163 .alpha2 = "JP",
164 //.alpha2 = "99", /* If I have no alpha2 to map it to */