/*
* Intel ACPI Component Architecture
* AML/ASL+ Disassembler version 20200925 (64-bit version)
* Copyright (c) 2000 - 2020 Intel Corporation
*
* Disassembling to symbolic ASL+ operators
*
* Disassembly of iASL2uWwRR.aml, Sun Jun 29 21:51:59 2025
*
* Original Table Header:
* Signature "SSDT"
* Length 0x00000089 (137)
* Revision 0x02
* Checksum 0x0F
* OEM ID "ACDT"
* OEM Table ID "BRG0"
* OEM Revision 0x00000000 (0)
* Compiler ID "INTL"
* Compiler Version 0x20200925 (538970405)
*/
DefinitionBlock ("", "SSDT", 2, "ACDT", "BRG0", 0x00000000)
{
External (_SB_.PCI0.GPP0.SWUS, DeviceObj)
Scope (\_SB.PCI0.GPP0.SWUS)
{
Device (BRG0)
{
Name (_ADR, Zero) // _ADR: Address
Method (_STA, 0, NotSerialized) // _STA: Status
{
If (_OSI ("Darwin"))
{
Return (0x0F)
}
Else
{
Return (Zero)
}
}
Device (GFX0)
{
Name (_ADR, Zero) // _ADR: Address
}
}
}
}