From d5b9ce926c0654c4d0d9f542d271c56a0efff959 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Fri, 25 May 2018 09:11:22 +0200 Subject: soc/broadcom/cygnus: Get rid of device_t Use of device_t has been abandoned in ramstage. Change-Id: Id41279a1cdc7c68d3dcc44e238863f2f4a452499 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/26533 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- src/soc/broadcom/cygnus/soc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/soc/broadcom/cygnus/soc.c b/src/soc/broadcom/cygnus/soc.c index bb9255cb75..090d122bd7 100644 --- a/src/soc/broadcom/cygnus/soc.c +++ b/src/soc/broadcom/cygnus/soc.c @@ -20,13 +20,13 @@ #include #include -static void soc_init(device_t dev) +static void soc_init(struct device *dev) { ram_resource(dev, 0, (uintptr_t)_dram/KiB, sdram_size_mb()*(MiB/KiB)); usb_init(); } -static void soc_noop(device_t dev) +static void soc_noop(struct device *dev) { } @@ -38,7 +38,7 @@ static struct device_operations soc_ops = { .scan_bus = 0, }; -static void enable_cygnus_dev(device_t dev) +static void enable_cygnus_dev(struct device *dev) { dev->ops = &soc_ops; } -- cgit v1.2.3