diff options
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt61pci.c')
| -rw-r--r-- | drivers/net/wireless/rt2x00/rt61pci.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt61pci.c b/drivers/net/wireless/rt2x00/rt61pci.c index 0fcc45636834..23cf93dfda06 100644 --- a/drivers/net/wireless/rt2x00/rt61pci.c +++ b/drivers/net/wireless/rt2x00/rt61pci.c | |||
| @@ -38,6 +38,13 @@ | |||
| 38 | #include "rt61pci.h" | 38 | #include "rt61pci.h" |
| 39 | 39 | ||
| 40 | /* | 40 | /* |
| 41 | * Allow hardware encryption to be disabled. | ||
| 42 | */ | ||
| 43 | static int modparam_nohwcrypt = 0; | ||
| 44 | module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO); | ||
| 45 | MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption."); | ||
| 46 | |||
| 47 | /* | ||
| 41 | * Register access. | 48 | * Register access. |
| 42 | * BBP and RF register require indirect register access, | 49 | * BBP and RF register require indirect register access, |
| 43 | * and use the CSR registers PHY_CSR3 and PHY_CSR4 to achieve this. | 50 | * and use the CSR registers PHY_CSR3 and PHY_CSR4 to achieve this. |
| @@ -2617,7 +2624,8 @@ static int rt61pci_probe_hw(struct rt2x00_dev *rt2x00dev) | |||
| 2617 | */ | 2624 | */ |
| 2618 | __set_bit(DRIVER_REQUIRE_FIRMWARE, &rt2x00dev->flags); | 2625 | __set_bit(DRIVER_REQUIRE_FIRMWARE, &rt2x00dev->flags); |
| 2619 | __set_bit(DRIVER_REQUIRE_DMA, &rt2x00dev->flags); | 2626 | __set_bit(DRIVER_REQUIRE_DMA, &rt2x00dev->flags); |
| 2620 | __set_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags); | 2627 | if (!modparam_nohwcrypt) |
| 2628 | __set_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags); | ||
| 2621 | 2629 | ||
| 2622 | /* | 2630 | /* |
| 2623 | * Set the rssi offset. | 2631 | * Set the rssi offset. |
