aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net
diff options
context:
space:
mode:
authorIvo van Doorn <ivdoorn@gmail.com>2008-08-06 11:27:31 -0400
committerJohn W. Linville <linville@tuxdriver.com>2008-08-22 16:29:59 -0400
commit008c44825db74c6cdcea13dfb1598896e74fe908 (patch)
tree6fecad89bfd278a321b4d6e0cfe1098a0cc6b54f /drivers/net
parentba2ab47129eee76f6f0ef52b4beae30a12cee7f6 (diff)
rt2x00: Add module parameter to disable HW crypto
Add a module parameter to rt61 and rt73 to disable HW crypto. The option should only be checked when determining if the SUPPORT_HW_CRYPTO flag should be set or not. Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/wireless/rt2x00/rt61pci.c10
-rw-r--r--drivers/net/wireless/rt2x00/rt73usb.c10
2 files changed, 18 insertions, 2 deletions
diff --git a/drivers/net/wireless/rt2x00/rt61pci.c b/drivers/net/wireless/rt2x00/rt61pci.c
index 0fcc4563683..23cf93dfda0 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 */
43static int modparam_nohwcrypt = 0;
44module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
45MODULE_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.
diff --git a/drivers/net/wireless/rt2x00/rt73usb.c b/drivers/net/wireless/rt2x00/rt73usb.c
index 4f2eb90aaf0..f58fd059c9a 100644
--- a/drivers/net/wireless/rt2x00/rt73usb.c
+++ b/drivers/net/wireless/rt2x00/rt73usb.c
@@ -37,6 +37,13 @@
37#include "rt73usb.h" 37#include "rt73usb.h"
38 38
39/* 39/*
40 * Allow hardware encryption to be disabled.
41 */
42static int modparam_nohwcrypt = 0;
43module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
44MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
45
46/*
40 * Register access. 47 * Register access.
41 * All access to the CSR registers will go through the methods 48 * All access to the CSR registers will go through the methods
42 * rt73usb_register_read and rt73usb_register_write. 49 * rt73usb_register_read and rt73usb_register_write.
@@ -2211,7 +2218,8 @@ static int rt73usb_probe_hw(struct rt2x00_dev *rt2x00dev)
2211 */ 2218 */
2212 __set_bit(DRIVER_REQUIRE_FIRMWARE, &rt2x00dev->flags); 2219 __set_bit(DRIVER_REQUIRE_FIRMWARE, &rt2x00dev->flags);
2213 __set_bit(DRIVER_REQUIRE_SCHEDULED, &rt2x00dev->flags); 2220 __set_bit(DRIVER_REQUIRE_SCHEDULED, &rt2x00dev->flags);
2214 __set_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags); 2221 if (!modparam_nohwcrypt)
2222 __set_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags);
2215 2223
2216 /* 2224 /*
2217 * Set the rssi offset. 2225 * Set the rssi offset.