|
@@ -68,15 +68,15 @@
|
|
|
#define CREATE_TRACE_POINTS
|
|
|
#include "trace.h"
|
|
|
|
|
|
-int ath5k_modparam_nohwcrypt;
|
|
|
+bool ath5k_modparam_nohwcrypt;
|
|
|
module_param_named(nohwcrypt, ath5k_modparam_nohwcrypt, bool, S_IRUGO);
|
|
|
MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
|
|
|
|
|
|
-static int modparam_all_channels;
|
|
|
+static bool modparam_all_channels;
|
|
|
module_param_named(all_channels, modparam_all_channels, bool, S_IRUGO);
|
|
|
MODULE_PARM_DESC(all_channels, "Expose all channels the device can use.");
|
|
|
|
|
|
-static int modparam_fastchanswitch;
|
|
|
+static bool modparam_fastchanswitch;
|
|
|
module_param_named(fastchanswitch, modparam_fastchanswitch, bool, S_IRUGO);
|
|
|
MODULE_PARM_DESC(fastchanswitch, "Enable fast channel switching for AR2413/AR5413 radios.");
|
|
|
|