diff options
author | Fabio Estevam <festevam@denx.de> | 2024-08-09 14:58:09 -0300 |
---|---|---|
committer | Fabio Estevam <festevam@denx.de> | 2024-08-13 09:31:35 -0300 |
commit | 72801d9971d09734f17056fd4836604d4ffd275f (patch) | |
tree | 04d7399e03c1386f35a4ad5b0584d8388342429a /board | |
parent | d1cdb5fe2da0cde1c07fe513e214b9dcb4f7aff3 (diff) | |
download | u-boot-72801d9971d09734f17056fd4836604d4ffd275f.tar.gz u-boot-72801d9971d09734f17056fd4836604d4ffd275f.tar.bz2 u-boot-72801d9971d09734f17056fd4836604d4ffd275f.zip |
tqma6: Do not print the board name twice
Currently, the devicetree model as well as the board variant name
are shown:
...
Model: TQ TQMa6S/DL on MBa6x
Board: TQMa6DL on a MBa6x
...
Unselect the CONFIG_DISPLAY_BOARDINFO option so that the
board name is printed only once in board_late_init() instead.
Signed-off-by: Fabio Estevam <festevam@denx.de>
Diffstat (limited to 'board')
-rw-r--r-- | board/tq/tqma6/tqma6.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/board/tq/tqma6/tqma6.c b/board/tq/tqma6/tqma6.c index 02a2022c3c..445ce987b6 100644 --- a/board/tq/tqma6/tqma6.c +++ b/board/tq/tqma6/tqma6.c @@ -230,11 +230,6 @@ int board_late_init(void) tqma6_bb_board_late_init(); - return 0; -} - -int checkboard(void) -{ printf("Board: %s on a %s\n", tqma6_get_boardname(), tqma6_bb_get_boardname()); return 0; |