soc/imgtec/pistachio: Get rid of device_t
Use of device_t has been abandoned in ramstage. Change-Id: Ia36b4ef7d66c50a044bc51f452ac8b7c7ff14323 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26540 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
f9ae706521
commit
e7f4beca19
|
@ -17,13 +17,13 @@
|
|||
#include <device/device.h>
|
||||
#include <symbols.h>
|
||||
|
||||
static void soc_read_resources(device_t dev)
|
||||
static void soc_read_resources(struct device *dev)
|
||||
{
|
||||
ram_resource(dev, 0, (uintptr_t)_dram / KiB,
|
||||
(CONFIG_DRAM_SIZE_MB * MiB) / KiB);
|
||||
}
|
||||
|
||||
static void soc_init(device_t dev)
|
||||
static void soc_init(struct device *dev)
|
||||
{
|
||||
printk(BIOS_INFO, "CPU: Imgtec Pistachio\n");
|
||||
}
|
||||
|
@ -33,7 +33,7 @@ static struct device_operations soc_ops = {
|
|||
.init = soc_init,
|
||||
};
|
||||
|
||||
static void enable_soc_dev(device_t dev)
|
||||
static void enable_soc_dev(struct device *dev)
|
||||
{
|
||||
dev->ops = &soc_ops;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue