summaryrefslogtreecommitdiff
path: root/src/soc/intel/braswell/acpi/dptf/wwan.asl
blob: bef112f9068fb51a5f042f91cc2b2324af492267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0-only */

Device (WWAN)
{
	Name (_HID, "INT3408")
	Name (_UID, 0)
	Name (PTYP, 0xF)
	Name (_STR, Unicode("Wireless Wide Area Network"))

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