aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt2500pci.c
diff options
context:
space:
mode:
authorIvo van Doorn <ivdoorn@gmail.com>2008-02-17 11:35:05 -0500
committerJohn W. Linville <linville@tuxdriver.com>2008-02-29 15:37:23 -0500
commit31562e802a72caf0757f351fff563d558d48d087 (patch)
treeac2875b80508ab156dd3ef0302673530ca058bf8 /drivers/net/wireless/rt2x00/rt2500pci.c
parentde99ff82cdc2e5b596d01000eed9e0d05566f2d7 (diff)
rt2x00: Cleanup mode registration
Don't wildly pass any number for num_rates to rt2x00lib, instead pass which type of rates are supported (CCK, OFDM). Same for num_modes but then for the 2GHZ and 5GHZ band. This makes the interface look much nicer and makes extending it later easier. Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2500pci.c')
-rw-r--r--drivers/net/wireless/rt2x00/rt2500pci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2500pci.c b/drivers/net/wireless/rt2x00/rt2500pci.c
index 93eaba852e5d..ffcd996df064 100644
--- a/drivers/net/wireless/rt2x00/rt2500pci.c
+++ b/drivers/net/wireless/rt2x00/rt2500pci.c
@@ -1666,8 +1666,8 @@ static void rt2500pci_probe_hw_mode(struct rt2x00_dev *rt2x00dev)
1666 /* 1666 /*
1667 * Initialize hw_mode information. 1667 * Initialize hw_mode information.
1668 */ 1668 */
1669 spec->num_modes = 2; 1669 spec->supported_bands = SUPPORT_BAND_2GHZ;
1670 spec->num_rates = 12; 1670 spec->supported_rates = SUPPORT_RATE_CCK | SUPPORT_RATE_OFDM;
1671 spec->tx_power_a = NULL; 1671 spec->tx_power_a = NULL;
1672 spec->tx_power_bg = txpower; 1672 spec->tx_power_bg = txpower;
1673 spec->tx_power_default = DEFAULT_TXPOWER; 1673 spec->tx_power_default = DEFAULT_TXPOWER;
@@ -1688,9 +1688,9 @@ static void rt2500pci_probe_hw_mode(struct rt2x00_dev *rt2x00dev)
1688 spec->num_channels = ARRAY_SIZE(rf_vals_bg_2525e); 1688 spec->num_channels = ARRAY_SIZE(rf_vals_bg_2525e);
1689 spec->channels = rf_vals_bg_2525e; 1689 spec->channels = rf_vals_bg_2525e;
1690 } else if (rt2x00_rf(&rt2x00dev->chip, RF5222)) { 1690 } else if (rt2x00_rf(&rt2x00dev->chip, RF5222)) {
1691 spec->supported_bands |= SUPPORT_BAND_5GHZ;
1691 spec->num_channels = ARRAY_SIZE(rf_vals_5222); 1692 spec->num_channels = ARRAY_SIZE(rf_vals_5222);
1692 spec->channels = rf_vals_5222; 1693 spec->channels = rf_vals_5222;
1693 spec->num_modes = 3;
1694 } 1694 }
1695} 1695}
1696 1696