soc: Remove copyright notices
[coreboot.git] / src / soc / intel / common / acpi / wifi.asl
blobed19bda1031fb471793162947596f50bc00a3074
1 /*
2  * This file is part of the coreboot project.
3  *
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; version 2 of the License.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
15 Device (WIFI)
17         Name (_ADR, Zero)
18         OperationRegion(WIXX, PCI_Config, 0x00, 0x10)
19         Name (WRDX, Package()
20         {
21                 // Revision
22                 0,
23                 Package()
24                 {
25                         // DomainType, 0x7:WiFi
26                         0x00000007,
27                         // Default Regulatory Domain Country identifier
28                         0x4150,
29                 }
30         })
31         Method(WRDD,0,Serialized)
32         {
33                 Store(\CID1,Index (DeRefOf (Index (WRDX, 1)), 1)) // Country identifier
35                 Return(WRDX)
36         }