summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/braswell/acpi/dptf/wifi.asl
blob: af6ed87a81f8aa81d74062b84497934f7069e51c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

Device (WIFI)
{
	Name (_HID, "INT3408")
	Name (_UID, 0)
	Name (PTYP, 0x07)
	Name (_STR, Unicode("WIFI wireless device"))

	Method (_STA)
	{
		If (LEqual (\DPTE, One)) {
			Return (0xF)
		} Else {
			Return (0x0)
		}
	}
}