diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-19 10:29:50 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2018-05-21 20:26:01 +0000 |
commit | bcb124e0098156b0d7f03589cf631aa3738a0dae (patch) | |
tree | 2eb0311de04242b7a272067072cb9e738de5bfa1 /src/southbridge/via/vt8237r/fadt.c | |
parent | ec41dae245df3fd938de0dfce3459f2a85a92753 (diff) | |
download | coreboot-bcb124e0098156b0d7f03589cf631aa3738a0dae.tar.xz |
sb/via/vt8237r: Get rid of device_t
Use of device_t has been abandoned in ramstage.
Change-Id: Ic4137bc4008d08e0e0d002e52c353fc29355ccb1
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26395
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/southbridge/via/vt8237r/fadt.c')
-rw-r--r-- | src/southbridge/via/vt8237r/fadt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/via/vt8237r/fadt.c b/src/southbridge/via/vt8237r/fadt.c index afebd7d59b..c5cd1d6ccb 100644 --- a/src/southbridge/via/vt8237r/fadt.c +++ b/src/southbridge/via/vt8237r/fadt.c @@ -28,7 +28,7 @@ void acpi_create_fadt(acpi_fadt_t *fadt, acpi_facs_t *facs, void *dsdt) { acpi_header_t *header = &(fadt->header); - device_t dev; + struct device *dev; int is_vt8237s = 0; /* Power management controller */ |