coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
wrdd.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 #ifndef _WRDD_H_
3 #define _WRDD_H_
4 
5 #include <stdint.h>
6 
7 /* WRDD Spec Revision */
8 #define WRDD_REVISION 0x0
9 
10 /* Domain type */
11 #define WRDD_DOMAIN_TYPE_WIFI 0x7
12 
13 /* Default regulatory domain ID */
14 #define WRDD_DEFAULT_REGULATORY_DOMAIN 0x4150
15 /* INDONESIA regulatory domain ID */
16 #define WRDD_REGULATORY_DOMAIN_INDONESIA 0x4944
17 
18 /* Retrieve the regulatory domain information */
20 
21 #endif /* _WRDD_H_ */
unsigned short uint16_t
Definition: stdint.h:11
uint16_t wifi_regulatory_domain(void)
Definition: wrdd.c:5