summaryrefslogtreecommitdiff
path: root/src/soc/intel/braswell/acpi/dptf/wwan.asl
blob: 91dbf93712636763f1b9c2f02d12a57506f2323a (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 == 1) {
			Return (0xF)
		} Else {
			Return (0x0)
		}
	}
}