mirror of
https://github.com/AskDavis/Getting-Started-With-ACPI.git
synced 2026-01-01 05:05:57 -08:00
20 lines
541 B
Plaintext
20 lines
541 B
Plaintext
/*
|
|
* Only necessary when no IMEI device (with any name) is present in the DSDT and a custom device-id
|
|
* is needed to be set via DeviceProperties (some Sandy Bridge or Ivy Bridge configurations).
|
|
*
|
|
* Source: https://github.com/acidanthera/OpenCorePkg/tree/master/Docs/AcpiSamples/Source/SSDT-IMEI.dsl
|
|
*/
|
|
DefinitionBlock ("", "SSDT", 2, "DRTNIA", "IMEI", 0x00000000)
|
|
{
|
|
External (_SB_.PCI0, DeviceObj)
|
|
|
|
Scope (_SB.PCI0)
|
|
{
|
|
Device (IMEI)
|
|
{
|
|
Name (_ADR, 0x00160000) // _ADR: Address
|
|
}
|
|
}
|
|
}
|
|
|