mirror of
https://github.com/AskDavis/Getting-Started-With-ACPI.git
synced 2026-01-01 05:05:57 -08:00
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
/*
|
|
* Intel ACPI Component Architecture
|
|
* AML/ASL+ Disassembler version 20200214 (64-bit version)
|
|
* Copyright (c) 2000 - 2020 Intel Corporation
|
|
*
|
|
* Disassembling to symbolic ASL+ operators
|
|
*
|
|
* Disassembly of /Users/mykolagrymalyuk/Documents/GitHub/Getting-Started-With-ACPI/extra-files/compiled/SSDT-PNLF-CFL.aml, Thu May 28 18:59:18 2020
|
|
*
|
|
* Original Table Header:
|
|
* Signature "SSDT"
|
|
* Length 0x0000007D (125)
|
|
* Revision 0x02
|
|
* Checksum 0x84
|
|
* OEM ID "ACDT"
|
|
* OEM Table ID "PNLFCFL"
|
|
* OEM Revision 0x00000000 (0)
|
|
* Compiler ID "INTL"
|
|
* Compiler Version 0x20190509 (538510601)
|
|
*/
|
|
DefinitionBlock ("", "SSDT", 2, "ACDT", "PNLFCFL", 0x00000000)
|
|
{
|
|
External (_SB_.PCI0.GFX0, DeviceObj)
|
|
|
|
Device (_SB.PCI0.GFX0.PNLF)
|
|
{
|
|
Name (_ADR, Zero) // _ADR: Address
|
|
Name (_HID, EisaId ("APP0002")) // _HID: Hardware ID
|
|
Name (_CID, "backlight") // _CID: Compatible ID
|
|
Name (_UID, 0x13) // _UID: Unique ID
|
|
Name (_STA, 0x0B) // _STA: Status
|
|
}
|
|
}
|
|
|