blob: 35726f21713436042f0dfb7c97d2c600174a16ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef _WIFI_GENERIC_H_
#define _WIFI_GENERIC_H_
/**
* struct drivers_wifi_generic_config - Data structure to contain generic wifi config
* @wake: Wake pin for ACPI _PRW
*/
struct drivers_wifi_generic_config {
unsigned int wake;
/* When set to true, this will add a _DSD which contains a single
property, `UntrustedDevice`, set to 1, to the ACPI Device. */
bool is_untrusted;
};
#endif /* _GENERIC_WIFI_H_ */
|