X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=board%2Fst%2Fstm32f746-disco%2Fstm32f746-disco.c;h=e21cfc6e495579ef2762c1039adc119b113843bc;hb=83d290c56fab2d38cd1ab4c4cc7099559c1d5046;hp=05b316fe90a491199b85917ef149661eeb26db38;hpb=1b76a7333abe821851b0583d925809182611efa0;p=platform%2Fkernel%2Fu-boot.git diff --git a/board/st/stm32f746-disco/stm32f746-disco.c b/board/st/stm32f746-disco/stm32f746-disco.c index 05b316f..e21cfc6 100644 --- a/board/st/stm32f746-disco/stm32f746-disco.c +++ b/board/st/stm32f746-disco/stm32f746-disco.c @@ -1,14 +1,17 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2016, STMicroelectronics - All Rights Reserved * Author(s): Vikas Manocha, for STMicroelectronics. - * - * SPDX-License-Identifier: GPL-2.0+ */ #include #include +#include #include #include +#include +#include +#include #include #include #include @@ -153,5 +156,10 @@ int board_init(void) STM32_SYSCFG->pmc |= SYSCFG_PMC_MII_RMII_SEL; #endif +#if defined(CONFIG_CMD_BMP) + bmp_display((ulong)stmicroelectronics_uboot_logo_8bit_rle, + BMP_ALIGN_CENTER, BMP_ALIGN_CENTER); +#endif /* CONFIG_CMD_BMP */ + return 0; }