Go to the source code of this file.
|
| MODULE_AUTHOR ("Atheros Communications") |
|
| MODULE_LICENSE ("Dual BSD/GPL") |
|
| MODULE_DESCRIPTION ("Atheros driver 802.11n HTC based wireless devices") |
|
| module_param_named (debug, ath9k_debug, uint, 0) |
|
| MODULE_PARM_DESC (debug,"Debugging mask") |
|
| module_param_named (nohwcrypt, htc_modparam_nohwcrypt, int, 0444) |
|
| MODULE_PARM_DESC (nohwcrypt,"Disable hardware encryption") |
|
| module_param_named (btcoex_enable, ath9k_htc_btcoex_enable, int, 0444) |
|
| MODULE_PARM_DESC (btcoex_enable,"Enable wifi-BT coexistence") |
|
int | ath9k_htc_probe_device (struct htc_target *htc_handle, struct device *dev, u16 devid, char *product, u32 drv_info) |
|
void | ath9k_htc_disconnect_device (struct htc_target *htc_handle, bool hotunplug) |
|
| module_init (ath9k_htc_init) |
|
| module_exit (ath9k_htc_exit) |
|
#define CHAN2G |
( |
|
_freq, |
|
|
|
_idx |
|
) |
| |
Value:{ \
.center_freq = (_freq), \
.hw_value = (_idx), \
.max_power = 20, \
}
Definition at line 37 of file htc_drv_init.c.
#define CHAN5G |
( |
|
_freq, |
|
|
|
_idx |
|
) |
| |
Value:{ \
.center_freq = (_freq), \
.hw_value = (_idx), \
.max_power = 20, \
}
Definition at line 43 of file htc_drv_init.c.
#define pr_fmt |
( |
|
fmt | ) |
KBUILD_MODNAME ": " fmt |
#define RATE |
( |
|
_bitrate, |
|
|
|
_hw_rate, |
|
|
|
_flags |
|
) |
| |
Value:{ \
.bitrate = (_bitrate), \
.hw_value = (_hw_rate), \
.hw_value_short = (
SHPCHECK(_hw_rate, _flags)) \
}
Definition at line 102 of file htc_drv_init.c.
MODULE_AUTHOR |
( |
"Atheros Communications" |
| ) |
|
MODULE_DESCRIPTION |
( |
"Atheros driver 802.11n HTC based wireless devices" |
| ) |
|
module_exit |
( |
ath9k_htc_exit |
| ) |
|
module_init |
( |
ath9k_htc_init |
| ) |
|
MODULE_LICENSE |
( |
"Dual BSD/GPL" |
| ) |
|
module_param_named |
( |
debug |
, |
|
|
ath9k_debug |
, |
|
|
uint |
, |
|
|
0 |
|
|
) |
| |
module_param_named |
( |
btcoex_enable |
, |
|
|
ath9k_htc_btcoex_enable |
, |
|
|
int |
, |
|
|
0444 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
debug |
, |
|
|
"Debugging mask" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
btcoex_enable |
, |
|
|
"Enable wifi-BT coexistence" |
|
|
) |
| |
int htc_modparam_nohwcrypt |