summaryrefslogtreecommitdiff
path: root/src/mainboard/lippert/frontrunner-af/mainboard.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-05-05 08:47:26 +0200
committerMartin Roth <martinroth@google.com>2018-05-08 03:03:48 +0000
commit070b2d97e537e3eca356559d6938dc0fc502cbb3 (patch)
tree7d07a2ba6724a6a8c3e5110af601607f9d227988 /src/mainboard/lippert/frontrunner-af/mainboard.c
parent9adef1ed56a04123245014e34f2869bee762d269 (diff)
downloadcoreboot-070b2d97e537e3eca356559d6938dc0fc502cbb3.tar.xz
mb/lippert: Get rid of device_t
Use of device_t has been abandoned in ramstage. Change-Id: I9a51ff76bc4fcd6ca659229c87cd7dd5bf83b43b Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26112 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/mainboard/lippert/frontrunner-af/mainboard.c')
-rw-r--r--src/mainboard/lippert/frontrunner-af/mainboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/lippert/frontrunner-af/mainboard.c b/src/mainboard/lippert/frontrunner-af/mainboard.c
index 4caf31f17c..80810ccfb5 100644
--- a/src/mainboard/lippert/frontrunner-af/mainboard.c
+++ b/src/mainboard/lippert/frontrunner-af/mainboard.c
@@ -114,7 +114,7 @@ static void init(struct device *dev)
/**********************************************
* Enable the dedicated functions of the board.
**********************************************/
-static void mainboard_enable(device_t dev)
+static void mainboard_enable(struct device *dev)
{
printk(BIOS_INFO, "Mainboard " CONFIG_MAINBOARD_PART_NUMBER " Enable.\n");
dev->ops->init = init;