Martin Roth | ebabfad | 2016-04-10 11:09:16 -0600 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the coreboot project. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License as |
| 6 | * published by the Free Software Foundation; version 2 of |
| 7 | * 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 | */ |
| 14 | |
Lee Leahy | 3247172 | 2015-04-20 15:20:28 -0700 | [diff] [blame] | 15 | Device (WWAN) |
| 16 | { |
| 17 | Name (_HID, "INT3408") |
| 18 | Name (_UID, 0) |
| 19 | Name (PTYP, 0xF) |
| 20 | Name (_STR, Unicode("Wireless Wide Area Network")) |
| 21 | |
| 22 | Method (_STA) |
| 23 | { |
| 24 | If (LEqual (\DPTE, One)) { |
| 25 | Return (0xF) |
| 26 | } Else { |
| 27 | Return (0x0) |
| 28 | } |
| 29 | } |
| 30 | } |