aboutsummaryrefslogtreecommitdiff
path: root/src/device/pci_rom.c
diff options
context:
space:
mode:
authorHimanshu Sahdev <himanshusah@hcl.com>2019-10-21 15:27:19 +0530
committerPatrick Georgi <pgeorgi@google.com>2019-10-24 07:44:53 +0000
commit7f1da07849c025982cda0e973588dc6305616cbe (patch)
tree81f722cab57f1a75bf35b4615f217e762d99294a /src/device/pci_rom.c
parentafd05050335b3fbcf70f7e3899639c2f65557280 (diff)
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>
Diffstat (limited to 'src/device/pci_rom.c')
-rw-r--r--src/device/pci_rom.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/device/pci_rom.c b/src/device/pci_rom.c
index b2b2266b67..3676f9cf9b 100644
--- a/src/device/pci_rom.c
+++ b/src/device/pci_rom.c
@@ -197,7 +197,7 @@ static struct rom_header *check_initialized(struct device *dev)
}
static unsigned long
-pci_rom_acpi_fill_vfct(struct device *device, struct acpi_vfct *vfct_struct,
+pci_rom_acpi_fill_vfct(struct device *device, acpi_vfct_t *vfct_struct,
unsigned long current)
{
acpi_vfct_image_hdr_t *header = &vfct_struct->image_hdr;
@@ -245,10 +245,10 @@ pci_rom_write_acpi_tables(struct device *device, unsigned long current,
/* AMD/ATI uses VFCT */
if (device->vendor == PCI_VENDOR_ID_ATI) {
- struct acpi_vfct *vfct;
+ acpi_vfct_t *vfct;
current = ALIGN_UP(current, 8);
- vfct = (struct acpi_vfct *)current;
+ vfct = (acpi_vfct_t *)current;
acpi_create_vfct(device, vfct, pci_rom_acpi_fill_vfct);
if (vfct->header.length) {
printk(BIOS_DEBUG, "ACPI: * VFCT at %lx\n", current);