summaryrefslogtreecommitdiff
path: root/src/device
diff options
context:
space:
mode:
authorHimanshu Sahdev <himanshusah@hcl.com>2019-10-21 11:23:20 +0530
committerPatrick Georgi <pgeorgi@google.com>2019-10-24 07:44:34 +0000
commitafd05050335b3fbcf70f7e3899639c2f65557280 (patch)
tree0c2eeb26e303fce409d49eae565f104319987ec0 /src/device
parentbc36e298f998f8126837b4ea8e2e56566dc078dc (diff)
downloadcoreboot-afd05050335b3fbcf70f7e3899639c2f65557280.tar.xz
arch/acpi.h: Use of typedef for acpi_vfct_image_hdr
Use of typedef and modify the usage accordingly. Change-Id: I65581702a60dbd286cb3910c6eeef5f9e1853cf1 Signed-off-by: Himanshu Sahdev <himanshusah@hcl.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36184 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Richard Spiegel <richard.spiegel@silverbackltd.com>
Diffstat (limited to 'src/device')
-rw-r--r--src/device/pci_rom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/pci_rom.c b/src/device/pci_rom.c
index 01c02e58e6..b2b2266b67 100644
--- a/src/device/pci_rom.c
+++ b/src/device/pci_rom.c
@@ -200,7 +200,7 @@ static unsigned long
pci_rom_acpi_fill_vfct(struct device *device, struct acpi_vfct *vfct_struct,
unsigned long current)
{
- struct acpi_vfct_image_hdr *header = &vfct_struct->image_hdr;
+ acpi_vfct_image_hdr_t *header = &vfct_struct->image_hdr;
struct rom_header *rom;
rom = check_initialized(device);