aboutsummaryrefslogtreecommitdiff
path: root/src/soc/marvell/mvmap2315/soc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/marvell/mvmap2315/soc.c')
-rw-r--r--src/soc/marvell/mvmap2315/soc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/marvell/mvmap2315/soc.c b/src/soc/marvell/mvmap2315/soc.c
index d05eca6cd0..6904e13fe3 100644
--- a/src/soc/marvell/mvmap2315/soc.c
+++ b/src/soc/marvell/mvmap2315/soc.c
@@ -21,7 +21,7 @@
#include <soc/addressmap.h>
#include <symbols.h>
-static void soc_enable(device_t dev)
+static void soc_enable(struct device *dev)
{
ram_resource(dev, 0, 0x0, MAX_DRAM_ADDRESS / KiB);
}
@@ -30,7 +30,7 @@ static struct device_operations soc_ops = {
.enable_resources = soc_enable,
};
-static void enable_mvmap2315_dev(device_t dev)
+static void enable_mvmap2315_dev(struct device *dev)
{
dev->ops = &soc_ops;
}