#include <linux/init.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/etherdevice.h>
#include <linux/random.h>
#include <net/mac80211.h>
#include <net/cfg80211.h>
#include "hw.h"
#include "carl9170.h"
#include "cmd.h"
Go to the source code of this file.
#define carl9170_a_ratetable_size 8 |
#define CARL9170_FILL_QUEUE |
( |
|
queue, |
|
|
|
ai_fs, |
|
|
|
cwmin, |
|
|
|
cwmax, |
|
|
|
_txop |
|
) |
| |
Value:
Definition at line 330 of file main.c.
#define carl9170_g_ratetable_size 12 |
Value:{ \
.ht_supported = true, \
IEEE80211_HT_CAP_SUP_WIDTH_20_40 | \
IEEE80211_HT_CAP_SGI_40 | \
IEEE80211_HT_CAP_DSSSCCK40 | \
IEEE80211_HT_CAP_SM_PS, \
.mcs = { \
.rx_mask = { 0xff, 0xff, 0, 0, 0x1, 0, 0, 0, 0, 0, }, \
}, \
}
Definition at line 152 of file main.c.
#define CHAN |
( |
|
_freq, |
|
|
|
_idx |
|
) |
| |
Value:{ \
.center_freq = (_freq), \
.hw_value = (_idx), \
.max_power = 18, \
}
Definition at line 90 of file main.c.
#define RATE |
( |
|
_bitrate, |
|
|
|
_hw_rate, |
|
|
|
_txpidx, |
|
|
|
_flags |
|
) |
| |
Value:{ \
.bitrate = (_bitrate), \
.hw_value = (_hw_rate) | (_txpidx) << 4, \
}
Definition at line 59 of file main.c.
module_param_named |
( |
nohwcrypt |
, |
|
|
modparam_nohwcrypt |
, |
|
|
bool |
, |
|
|
S_IRUGO |
|
|
) |
| |
MODULE_PARM_DESC |
( |
nohwcrypt |
, |
|
|
"Disable hardware crypto offload." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
noht |
, |
|
|
"Disable MPDU aggregation." |
|
|
) |
| |
Initial value:
Definition at line 65 of file main.c.