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 <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26533
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
Elyes HAOUAS 2018-05-25 09:11:22 +02:00 committed by Patrick Georgi
parent 05498a254d
commit d5b9ce926c
1 changed files with 3 additions and 3 deletions

View File

@ -20,13 +20,13 @@
#include <stdlib.h>
#include <symbols.h>
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;
}