#include "../wifi.h"
#include "../core.h"
#include "../pci.h"
#include "reg.h"
#include "def.h"
#include "phy.h"
#include "dm.h"
#include "hw.h"
#include "rf.h"
#include "sw.h"
#include "trx.h"
#include "led.h"
#include <linux/module.h>
Go to the source code of this file.
|
int | rtl92c_init_sw_vars (struct ieee80211_hw *hw) |
|
void | rtl92c_deinit_sw_vars (struct ieee80211_hw *hw) |
|
| MODULE_DEVICE_TABLE (pci, rtl92ce_pci_ids) |
|
| MODULE_AUTHOR ("lizhaoming <[email protected]>") |
|
| MODULE_AUTHOR ("Realtek WlanFAE <[email protected]>") |
|
| MODULE_AUTHOR ("Larry Finger <[email protected]>") |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_DESCRIPTION ("Realtek 8192C/8188C 802.11n PCI wireless") |
|
| MODULE_FIRMWARE ("rtlwifi/rtl8192cfw.bin") |
|
| MODULE_FIRMWARE ("rtlwifi/rtl8192cfwU.bin") |
|
| MODULE_FIRMWARE ("rtlwifi/rtl8192cfwU_B.bin") |
|
| module_param_named (swenc, rtl92ce_mod_params.sw_crypto, bool, 0444) |
|
| module_param_named (debug, rtl92ce_mod_params.debug, int, 0444) |
|
| module_param_named (ips, rtl92ce_mod_params.inactiveps, bool, 0444) |
|
| module_param_named (swlps, rtl92ce_mod_params.swctrl_lps, bool, 0444) |
|
| module_param_named (fwlps, rtl92ce_mod_params.fwctrl_lps, bool, 0444) |
|
| MODULE_PARM_DESC (swenc,"Set to 1 for software crypto (default 0)\n") |
|
| MODULE_PARM_DESC (ips,"Set to 0 to not use link power save (default 1)\n") |
|
| MODULE_PARM_DESC (swlps,"Set to 1 to use SW control power save (default 0)\n") |
|
| MODULE_PARM_DESC (fwlps,"Set to 1 to use FW control power save (default 1)\n") |
|
| MODULE_PARM_DESC (debug,"Set debug level (0-5) (default 0)") |
|
| module_pci_driver (rtl92ce_driver) |
|
MODULE_DESCRIPTION |
( |
"Realtek 8192C/8188C 802.11n PCI wireless" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
rtl92ce_pci_ids |
|
|
) |
| |
MODULE_FIRMWARE |
( |
"rtlwifi/rtl8192cfw.bin" |
| ) |
|
MODULE_FIRMWARE |
( |
"rtlwifi/rtl8192cfwU.bin" |
| ) |
|
MODULE_FIRMWARE |
( |
"rtlwifi/rtl8192cfwU_B.bin" |
| ) |
|
module_param_named |
( |
swenc |
, |
|
|
rtl92ce_mod_params. |
sw_crypto, |
|
|
bool |
, |
|
|
0444 |
|
|
) |
| |
module_param_named |
( |
debug |
, |
|
|
rtl92ce_mod_params. |
debug, |
|
|
int |
, |
|
|
0444 |
|
|
) |
| |
module_param_named |
( |
ips |
, |
|
|
rtl92ce_mod_params. |
inactiveps, |
|
|
bool |
, |
|
|
0444 |
|
|
) |
| |
module_param_named |
( |
swlps |
, |
|
|
rtl92ce_mod_params. |
swctrl_lps, |
|
|
bool |
, |
|
|
0444 |
|
|
) |
| |
module_param_named |
( |
fwlps |
, |
|
|
rtl92ce_mod_params. |
fwctrl_lps, |
|
|
bool |
, |
|
|
0444 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
swenc |
, |
|
|
"Set to 1 for software crypto (default 0)\n" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
ips |
, |
|
|
"Set to 0 to not use link power save (default 1)\n" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
swlps |
, |
|
|
"Set to 1 to use SW control power save (default 0)\n" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
fwlps |
, |
|
|
"Set to 1 to use FW control power save (default 1)\n" |
|
|
) |
| |
module_pci_driver |
( |
rtl92ce_driver |
| ) |
|
Definition at line 186 of file sw.c.
Definition at line 89 of file sw.c.