aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/foster/mainboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/foster/mainboard.c')
-rw-r--r--src/mainboard/google/foster/mainboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/foster/mainboard.c b/src/mainboard/google/foster/mainboard.c
index 65e41cc9fd..3c2d831bf8 100644
--- a/src/mainboard/google/foster/mainboard.c
+++ b/src/mainboard/google/foster/mainboard.c
@@ -106,7 +106,7 @@ static void setup_audio(void)
clock_enable_audio();
}
-static void mainboard_init(device_t dev)
+static void mainboard_init(struct device *dev)
{
soc_configure_pads(padcfgs, ARRAY_SIZE(padcfgs));
soc_configure_funits(funitcfgs, ARRAY_SIZE(funitcfgs));
@@ -115,7 +115,7 @@ static void mainboard_init(device_t dev)
setup_audio();
}
-static void mainboard_enable(device_t dev)
+static void mainboard_enable(struct device *dev)
{
dev->ops->init = &mainboard_init;
}