aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/technexion/tim5690/mainboard.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-05-04 21:50:26 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-05-09 13:16:25 +0000
commit0a0632590768a6e84f6633e559d02e40e6ee1caf (patch)
treeb0de1b8277d7df3c4486e35b900a577539ab0fc7 /src/mainboard/technexion/tim5690/mainboard.c
parent477a516ec3e97bd419d41f6b432eff19b722b9f2 (diff)
mb/technexion: Get rid of device_t
Use of device_t has been abandoned in ramstage. Change-Id: I6efd1675b1124b200b5ff16fdef91c10b77b69d1 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26094 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/mainboard/technexion/tim5690/mainboard.c')
-rw-r--r--src/mainboard/technexion/tim5690/mainboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/technexion/tim5690/mainboard.c b/src/mainboard/technexion/tim5690/mainboard.c
index edc1170794..12050f07fa 100644
--- a/src/mainboard/technexion/tim5690/mainboard.c
+++ b/src/mainboard/technexion/tim5690/mainboard.c
@@ -113,7 +113,7 @@ static void set_thermal_config(void)
{
u8 byte;
u16 word;
- device_t sm_dev;
+ struct device *sm_dev;
/* set ADT 7461 */
ADT7461_write_byte(0x0B, 0x50); /* Local Temperature Hight limit */
@@ -218,7 +218,7 @@ static void lcd_panel_id(rs690_vbios_regs *vbios_regs, u8 num_id)
* enable the dedicated function in tim5690 board.
* This function called early than rs690_enable.
*************************************************/
-static void mainboard_enable(device_t dev)
+static void mainboard_enable(struct device *dev)
{
u16 gpio_base = IT8712F_SIMPLE_IO_BASE;
#if IS_ENABLED(CONFIG_VGA_ROM_RUN)