aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel/fsp_rangeley/acpi.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-02-09 08:38:14 +0100
committerPatrick Georgi <pgeorgi@google.com>2018-04-30 09:24:11 +0000
commit09d1d5969d6a1781c4efe5df02d2add83fbbd321 (patch)
tree29de18b446b8d593f5368bf7d30bba53ba1e9927 /src/northbridge/intel/fsp_rangeley/acpi.c
parentf925c56fe9e99811ba2e8f012d9116cac3092f96 (diff)
nb/intel/fsp_rangeley: Get rid of device_t
Use of `device_t` has been abandoned in ramstage. Change-Id: I0b969a5109276d108e6140bad338c74786b967f3 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/23671 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/northbridge/intel/fsp_rangeley/acpi.c')
-rw-r--r--src/northbridge/intel/fsp_rangeley/acpi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/northbridge/intel/fsp_rangeley/acpi.c b/src/northbridge/intel/fsp_rangeley/acpi.c
index 00947aa353..c8e6d45481 100644
--- a/src/northbridge/intel/fsp_rangeley/acpi.c
+++ b/src/northbridge/intel/fsp_rangeley/acpi.c
@@ -30,7 +30,7 @@
unsigned long acpi_fill_mcfg(unsigned long current)
{
- device_t dev;
+ struct device *dev;
u32 pciexbar = 0;
u32 pciexbar_reg;
int max_buses;
@@ -61,7 +61,7 @@ unsigned long acpi_fill_mcfg(unsigned long current)
return current;
}
-void northbridge_acpi_fill_ssdt_generator(device_t device)
+void northbridge_acpi_fill_ssdt_generator(struct device *device)
{
u32 bmbound;
char pscope[] = "\\_SB.PCI0";