mb/ocp/deltalake: Convert to ASL 2.0 syntax
Generated build/dsdt.dsl files are same. Change-Id: I5bd8fe629fb969ec14dd400b6463ee1592d6903b Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46207 Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
12f69c5ef1
commit
b29769a391
|
@ -329,9 +329,9 @@ Field (PSYS, ByteAcc, NoLock, Preserve)
|
||||||
/* SMI I/O Trap */
|
/* SMI I/O Trap */
|
||||||
Method (TRAP, 1, Serialized)
|
Method (TRAP, 1, Serialized)
|
||||||
{
|
{
|
||||||
Store (Arg0, SMIF) // SMI Function
|
SMIF = Arg0 // SMI Function
|
||||||
Store (0, TRP0) // Generate trap
|
TRP0 = 0 // Generate trap
|
||||||
Return (SMIF) // Return value of SMI handler
|
Return (SMIF) // Return value of SMI handler
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -345,7 +345,7 @@ Method (TRAP, 1, Serialized)
|
||||||
Method (_PIC, 1)
|
Method (_PIC, 1)
|
||||||
{
|
{
|
||||||
/* Remember the OS' IRQ routing choice. */
|
/* Remember the OS' IRQ routing choice. */
|
||||||
Store (Arg0, PICM)
|
PICM = Arg0
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue