sch: Move to implicit length patching
Change-Id: I057e7d30fa3c661e83db09e27278ce9f0bec69d4 Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/7330 Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Tested-by: build bot (Jenkins)
This commit is contained in:
parent
48b6b97eb4
commit
d1069e0a40
|
@ -193,16 +193,15 @@ static void southbridge_inject_dsdt(void)
|
||||||
global_nvs_t *gnvs = cbmem_add (CBMEM_ID_ACPI_GNVS, sizeof (*gnvs));
|
global_nvs_t *gnvs = cbmem_add (CBMEM_ID_ACPI_GNVS, sizeof (*gnvs));
|
||||||
|
|
||||||
if (gnvs) {
|
if (gnvs) {
|
||||||
int scopelen;
|
|
||||||
memset(gnvs, 0, sizeof(*gnvs));
|
memset(gnvs, 0, sizeof(*gnvs));
|
||||||
acpi_create_gnvs(gnvs);
|
acpi_create_gnvs(gnvs);
|
||||||
/* And tell SMI about it */
|
/* And tell SMI about it */
|
||||||
smm_setup_structures(gnvs, NULL, NULL);
|
smm_setup_structures(gnvs, NULL, NULL);
|
||||||
|
|
||||||
/* Add it to SSDT. */
|
/* Add it to SSDT. */
|
||||||
scopelen = acpigen_write_scope("\\");
|
acpigen_write_scope("\\");
|
||||||
scopelen += acpigen_write_name_dword("NVSA", (u32) gnvs);
|
acpigen_write_name_dword("NVSA", (u32) gnvs);
|
||||||
acpigen_patch_len(scopelen - 1);
|
acpigen_pop_len();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue