Matt DeVillier has uploaded a new change for review. ( https://review.coreboot.org/19952 )
Change subject: gma/acpi: Fix argument count to _DSS ......................................................................
gma/acpi: Fix argument count to _DSS
As the comment above the change indicates, and per ACPI spec, _DSS has one argument.
Change-Id: Ic05832d412cd0c89ed3a275c4db694a9118dac28 Signed-off-by: Matt DeVillier matt.devillier@gmail.com --- M src/drivers/intel/gma/acpi.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/52/19952/1
diff --git a/src/drivers/intel/gma/acpi.c b/src/drivers/intel/gma/acpi.c index c3a9b8a..f6516c9 100644 --- a/src/drivers/intel/gma/acpi.c +++ b/src/drivers/intel/gma/acpi.c @@ -122,7 +122,7 @@ ^^XDSS(0x5a, Arg0) } */ - acpigen_write_method("_DSS", 0); + acpigen_write_method("_DSS", 1); acpigen_emit_namestring("^^XDSS"); acpigen_write_byte(i); acpigen_emit_byte(0x68); /* Arg0Op. */