aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel/pineview/northbridge.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-02-09 08:46:25 +0100
committerPatrick Georgi <pgeorgi@google.com>2018-04-30 09:23:18 +0000
commit6275360d562630bd538fb804bc00525ac31b5f37 (patch)
tree6ba5ee0ec05442e1dbe2ad4355e2ec9fae9906e5 /src/northbridge/intel/pineview/northbridge.c
parentab8743c02e3e30ade3b70198c3cd8e9f33b183ec (diff)
nb/intel/pineview: Get rid of device_t
Use of `device_t` has been abandoned in ramstage. Change-Id: Icec2e5f722c1f15493e5861b47f64698250f5813 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/23673 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/northbridge/intel/pineview/northbridge.c')
-rw-r--r--src/northbridge/intel/pineview/northbridge.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/northbridge/intel/pineview/northbridge.c b/src/northbridge/intel/pineview/northbridge.c
index ea55974ea0..61b9edbc74 100644
--- a/src/northbridge/intel/pineview/northbridge.c
+++ b/src/northbridge/intel/pineview/northbridge.c
@@ -35,7 +35,7 @@
*/
static const int legacy_hole_base_k = 0xa0000 / 1024;
-static void add_fixed_resources(device_t dev, int index)
+static void add_fixed_resources(struct device *dev, int index)
{
struct resource *resource;
@@ -51,7 +51,7 @@ static void add_fixed_resources(device_t dev, int index)
(0x100000 - 0xc0000) >> 10);
}
-static void mch_domain_read_resources(device_t dev)
+static void mch_domain_read_resources(struct device *dev)
{
u64 tom, touud;
u32 tomk, tolud, tseg_sizek;
@@ -127,7 +127,7 @@ static void mch_domain_read_resources(device_t dev)
add_fixed_resources(dev, index);
}
-static void mch_domain_set_resources(device_t dev)
+static void mch_domain_set_resources(struct device *dev)
{
struct resource *res;
@@ -137,7 +137,7 @@ static void mch_domain_set_resources(device_t dev)
assign_resources(dev->link_list);
}
-static void mch_domain_init(device_t dev)
+static void mch_domain_init(struct device *dev)
{
u32 reg32;
@@ -156,7 +156,7 @@ static struct device_operations pci_domain_ops = {
.acpi_fill_ssdt_generator = generate_cpu_entries,
};
-static void cpu_bus_init(device_t dev)
+static void cpu_bus_init(struct device *dev)
{
initialize_cpus(dev->link_list);
}
@@ -169,7 +169,7 @@ static struct device_operations cpu_bus_ops = {
};
-static void enable_dev(device_t dev)
+static void enable_dev(struct device *dev)
{
/* Set the operations if it is a special bus type */
if (dev->path.type == DEVICE_PATH_DOMAIN) {