diff options
Diffstat (limited to 'src/mainboard/technexion/tim5690/mainboard.c')
-rw-r--r-- | src/mainboard/technexion/tim5690/mainboard.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mainboard/technexion/tim5690/mainboard.c b/src/mainboard/technexion/tim5690/mainboard.c index 41147cd034..b87058c226 100644 --- a/src/mainboard/technexion/tim5690/mainboard.c +++ b/src/mainboard/technexion/tim5690/mainboard.c @@ -242,10 +242,13 @@ static void tim5690_enable(device_t dev) set_thermal_config(); } -int add_mainboard_resources(struct lb_memory *mem) +void mainboard_post(u8 value) { - technexion_post_code(LED_MESSAGE_FINISH); - return 0; + switch (value) { + case POST_ENTER_ELF_BOOT: + technexion_post_code(LED_MESSAGE_FINISH); + break; + } } struct chip_operations mainboard_ops = { |