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>
This commit is contained in:
Elyes HAOUAS
2018-02-09 07:44:31 +01:00
committed by Patrick Georgi
parent a8bb6c10c5
commit 6dcdaaf205
4 changed files with 12 additions and 12 deletions

View File

@@ -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)
{