mainboard/intel/avenuecity_crb: Update full IIO configuration
[coreboot2.git] / src / mainboard / purism / librem_jsl / acpi / ac.asl
blob86267e8eba6a23133c78b3925fe63b8ac73e5dbb
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 Device (AC)
5         Name (_HID, "ACPI0003" /* Power Source Device */)  // _HID: Hardware ID
6         Name (_PCL, Package (0x01)  // _PCL: Power Consumer List
7         {
8                 _SB
9         })
11         Name (ACEX, One)
13         Method (_PSR, 0, NotSerialized)  // _PSR: Power Source
14         {
15                 Printf ("AC: _PSR: %o", ACEX)
16                 Return (ACEX)
17         }
19         Method (_STA, 0, NotSerialized)  // _STA: Status
20         {
21                 Return (0x0F)
22         }