Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 13596
b: refs/heads/master
c: 0352057
h: refs/heads/master
v: v3
  • Loading branch information
James Ketrenos committed Nov 7, 2005
1 parent 269b626 commit cf88458
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 991d1cc5963f4926478f3139ec0b0dd26a2c888c
refs/heads/master: 035205760e4f28082fedb258a20c804746c84ffe
18 changes: 17 additions & 1 deletion trunk/drivers/net/wireless/ipw2200.c
Original file line number Diff line number Diff line change
Expand Up @@ -10495,6 +10495,17 @@ static const struct ieee80211_geo ipw_geos[] = {
{5210, 42}, {5230, 46}},
},

{ /* Rest of World */
"ZZR",
.bg_channels = 14,
.bg = {{2412, 1}, {2417, 2}, {2422, 3},
{2427, 4}, {2432, 5}, {2437, 6},
{2442, 7}, {2447, 8}, {2452, 9},
{2457, 10}, {2462, 11}, {2467, 12},
{2472, 13}, {2484, 14, IEEE80211_CH_B_ONLY |
IEEE80211_CH_PASSIVE_ONLY}},
},

{ /* High Band */
"ZZH",
.bg_channels = 13,
Expand Down Expand Up @@ -10711,8 +10722,13 @@ static int ipw_up(struct ipw_priv *priv)
ipw_geos[j].name, 3))
break;
}
if (j == ARRAY_SIZE(ipw_geos))
if (j == ARRAY_SIZE(ipw_geos)) {
IPW_WARNING("SKU [%c%c%c] not recognized.\n",
priv->eeprom[EEPROM_COUNTRY_CODE + 0],
priv->eeprom[EEPROM_COUNTRY_CODE + 1],
priv->eeprom[EEPROM_COUNTRY_CODE + 2]);
j = 0;
}
if (ipw_set_geo(priv->ieee, &ipw_geos[j])) {
IPW_WARNING("Could not set geography.");
return 0;
Expand Down

0 comments on commit cf88458

Please sign in to comment.