summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/braswell/acpi/dptf/wwan.asl
blob: 0a83b1664f38ab9d1c965e3decb3ff24fb316333 (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 (WWAN)
{
	Name (_HID, "INT3408")
	Name (_UID, 0)
	Name (PTYP, 0xF)
	Name (_STR, Unicode("Wireless Wide Area Network"))

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