summaryrefslogtreecommitdiff
path: root/src/arch/x86/acpi.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/acpi.c')
-rw-r--r--src/arch/x86/acpi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/x86/acpi.c b/src/arch/x86/acpi.c
index 8e4de8214f..e28da5393c 100644
--- a/src/arch/x86/acpi.c
+++ b/src/arch/x86/acpi.c
@@ -737,14 +737,14 @@ void acpi_create_hpet(acpi_hpet_t *hpet)
}
void acpi_create_vfct(struct device *device,
- struct acpi_vfct *vfct,
+ acpi_vfct_t *vfct,
unsigned long (*acpi_fill_vfct)(struct device *device,
- struct acpi_vfct *vfct_struct, unsigned long current))
+ acpi_vfct_t *vfct_struct, unsigned long current))
{
acpi_header_t *header = &(vfct->header);
- unsigned long current = (unsigned long)vfct + sizeof(struct acpi_vfct);
+ unsigned long current = (unsigned long)vfct + sizeof(acpi_vfct_t);
- memset((void *)vfct, 0, sizeof(struct acpi_vfct));
+ memset((void *)vfct, 0, sizeof(acpi_vfct_t));
if (!header)
return;