aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt2500pci.c
diff options
context:
space:
mode:
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