acrn-hypervisor/devicemodel/hw/acpi
Victor Sun e078ce7aae DM: hotfix for loop initial declaration in acpi_pm
for (int i = 0; i < ...; i++) is only allowed in C99 mode, so fix this
coding style to:

int i;
for (i = 0; i < ...; i++)

Signed-off-by: Victor Sun <victor.sun@intel.com>
Acked-by: Eddie Dong <eddie.dong@intel.com>
2018-05-15 17:25:25 +08:00
..
acpi.c DM: build UOS DSDT with vcpu px state data 2018-05-15 17:25:25 +08:00
acpi_pm.c DM: hotfix for loop initial declaration in acpi_pm 2018-05-15 17:25:25 +08:00