diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-04 20:44:12 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-05-08 14:22:27 +0000 |
commit | 61e07f6ed6ffbadff82f2d4e1b21dcc111e33762 (patch) | |
tree | 073cc11ac7b9801fa0ebe13e36a6246b0febadb3 /src/mainboard/ibase | |
parent | dadfb34c41ba07fd9fca254e714ea3aa584fd37a (diff) |
mb/ibase: Get rid of device_t
Use of device_t has been abandoned in ramstage.
Change-Id: Ief79d8cc1bfdd271e646d09679514560a2c79209
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26088
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Diffstat (limited to 'src/mainboard/ibase')
-rw-r--r-- | src/mainboard/ibase/mb899/mainboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/ibase/mb899/mainboard.c b/src/mainboard/ibase/mb899/mainboard.c index 376e08a92e..0629d3323b 100644 --- a/src/mainboard/ibase/mb899/mainboard.c +++ b/src/mainboard/ibase/mb899/mainboard.c @@ -27,7 +27,7 @@ // mainboard_enable is executed as first thing after // enumerate_buses(). -static void mainboard_enable(device_t dev) +static void mainboard_enable(struct device *dev) { install_intel_vga_int15_handler(GMA_INT15_ACTIVE_LFP_INT_LVDS, GMA_INT15_PANEL_FIT_DEFAULT, GMA_INT15_BOOT_DISPLAY_DEFAULT, 3); hwm_setup(); |