summaryrefslogtreecommitdiff
path: root/src/northbridge/intel/gm45/acpi.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-02-09 07:44:31 +0100
committerPatrick Georgi <pgeorgi@google.com>2018-04-30 09:22:04 +0000
commit6dcdaaf2053061add095f6225ccd3e38d47e08b2 (patch)
treed15d5a1f629baab3b9debdbd7af471962b1a2ec6 /src/northbridge/intel/gm45/acpi.c
parenta8bb6c10c5b4e8ee95b08655e013d1851b2857e5 (diff)
downloadcoreboot-6dcdaaf2053061add095f6225ccd3e38d47e08b2.tar.xz
nb/intel/gm45: Get rid of device_t
Use of `device_t` has been abandoned in ramstage. Change-Id: If064a4027265e8fc2ea919d9742a554abf29b8db Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/23667 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/northbridge/intel/gm45/acpi.c')
-rw-r--r--src/northbridge/intel/gm45/acpi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/northbridge/intel/gm45/acpi.c b/src/northbridge/intel/gm45/acpi.c
index b90afca8a2..73b098f610 100644
--- a/src/northbridge/intel/gm45/acpi.c
+++ b/src/northbridge/intel/gm45/acpi.c
@@ -29,7 +29,7 @@
unsigned long acpi_fill_mcfg(unsigned long current)
{
- device_t dev;
+ struct device *dev;
u32 pciexbar = 0;
u32 pciexbar_reg;
int max_buses;
@@ -105,7 +105,7 @@ static unsigned long acpi_fill_dmar(unsigned long current)
return current;
}
-unsigned long northbridge_write_acpi_tables(device_t device,
+unsigned long northbridge_write_acpi_tables(struct device *device,
unsigned long start,
struct acpi_rsdp *rsdp)
{