summaryrefslogtreecommitdiff
path: root/src/northbridge/amd/amdk8/acpi.h
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-05-20 11:28:10 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2018-05-21 20:28:10 +0000
commite4988ccf06c198b3aa311f4b6d84fd20b53a0aa4 (patch)
tree7abc230decbe906997c63c8afa1cbd3ffb22bb54 /src/northbridge/amd/amdk8/acpi.h
parent1c56f2fe77ea9fb30f277e08a40245b0751471bd (diff)
downloadcoreboot-e4988ccf06c198b3aa311f4b6d84fd20b53a0aa4.tar.xz
nb/amd/amdk8: Get rid of device_t
Use of device_t has been abandoned in ramstage. Change-Id: If540a8b0afb93c1ba8e901c4771228a43c1e6a14 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26427 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/northbridge/amd/amdk8/acpi.h')
-rw-r--r--src/northbridge/amd/amdk8/acpi.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/northbridge/amd/amdk8/acpi.h b/src/northbridge/amd/amdk8/acpi.h
index 80e88c18f0..934792d1cc 100644
--- a/src/northbridge/amd/amdk8/acpi.h
+++ b/src/northbridge/amd/amdk8/acpi.h
@@ -17,7 +17,9 @@
#define AMDK8_ACPI_H
#include <arch/acpigen.h>
-void k8acpi_write_vars(device_t device);
-unsigned long northbridge_write_acpi_tables(device_t device, unsigned long start, acpi_rsdp_t *rsdp);
+void k8acpi_write_vars(struct device *device);
+unsigned long northbridge_write_acpi_tables(struct device *device,
+ unsigned long start,
+ acpi_rsdp_t *rsdp);
#endif