northbridge/intel/i945: Convert to ASL 2.0
Change-Id: Iea9630ce7e5bfcc9d1c8699a81bd1c61a0705de8 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/61240 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin L Roth <gaumless@tutanota.com>
This commit is contained in:
parent
90e4d744cc
commit
dd75aaf3f5
|
@ -26,7 +26,7 @@ Scope (GFX0)
|
|||
|
||||
Method (XBCM, 1, NotSerialized)
|
||||
{
|
||||
Store (Or(ShiftLeft (Arg0, 4), 0xf), ^^DSPC.BRTC)
|
||||
^^DSPC.BRTC = (Arg0 << 4) | 0xf
|
||||
#ifdef SMI_SAVE_CMOS
|
||||
Trap(SMI_SAVE_CMOS)
|
||||
#endif
|
||||
|
@ -34,8 +34,8 @@ Scope (GFX0)
|
|||
|
||||
Method (XBQC, 0, NotSerialized)
|
||||
{
|
||||
Store (^^DSPC.BRTC, Local0)
|
||||
ShiftRight (Local0, 4, Local0)
|
||||
Local0 = ^^DSPC.BRTC
|
||||
Local0 >>= 4
|
||||
Return (Local0)
|
||||
}
|
||||
#include <drivers/intel/gma/acpi/common.asl>
|
||||
|
|
Loading…
Reference in New Issue