mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-10-09 10:27:26 +02:00
wiphy: add comments around the driver quirks
This commit is contained in:
parent
161de4a3ad
commit
46037c428c
12
src/wiphy.c
12
src/wiphy.c
@ -69,11 +69,23 @@ static uint32_t work_ids;
|
|||||||
static unsigned int wiphy_dump_id;
|
static unsigned int wiphy_dump_id;
|
||||||
|
|
||||||
enum driver_flag {
|
enum driver_flag {
|
||||||
|
/* Force the use of the default interface created by the kernel */
|
||||||
DEFAULT_IF = 0x1,
|
DEFAULT_IF = 0x1,
|
||||||
|
/*
|
||||||
|
* Force the use of the PAE socket rather than control port, even if
|
||||||
|
* control port is supported
|
||||||
|
*/
|
||||||
FORCE_PAE = 0x2,
|
FORCE_PAE = 0x2,
|
||||||
|
/* Disable power save on the adapter during initialization */
|
||||||
POWER_SAVE_DISABLE = 0x4,
|
POWER_SAVE_DISABLE = 0x4,
|
||||||
|
/* Don't use OWE when connecting to open networks */
|
||||||
OWE_DISABLE = 0x8,
|
OWE_DISABLE = 0x8,
|
||||||
|
/* Disables multicast RX frame registration */
|
||||||
MULTICAST_RX_DISABLE = 0x10,
|
MULTICAST_RX_DISABLE = 0x10,
|
||||||
|
/*
|
||||||
|
* Don't use SAE (WPA3) when connecting to hybrid networks. This will
|
||||||
|
* prevent IWD from connecting to WPA3-only networks
|
||||||
|
*/
|
||||||
SAE_DISABLE = 0x20,
|
SAE_DISABLE = 0x20,
|
||||||
/* Disables use of the NL80211_SCAN_FLAG_COLOCATED_6GHZ flag in scans */
|
/* Disables use of the NL80211_SCAN_FLAG_COLOCATED_6GHZ flag in scans */
|
||||||
COLOCATED_SCAN_DISABLE = 0x40,
|
COLOCATED_SCAN_DISABLE = 0x40,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user