arch/acpi.h: Use of typedef for acpi_vfct

Use of typedef and modify the usage accordingly.

Change-Id: I875ef2fa31e65750233fa8da2b76d8db5db44f2d
Signed-off-by: Himanshu Sahdev <himanshusah@hcl.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36193
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Richard Spiegel <richard.spiegel@silverbackltd.com>
This commit is contained in:
Himanshu Sahdev
2019-10-21 15:27:19 +05:30
committed by Patrick Georgi
parent afd0505033
commit 7f1da07849
3 changed files with 11 additions and 11 deletions

View File

@@ -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;