diff options
author | Simon Glass | 2023-11-12 19:58:25 -0700 |
---|---|---|
committer | Tom Rini | 2023-11-28 12:53:04 -0500 |
commit | edb0ecd187088019024404431d5ea0067b0c2859 (patch) | |
tree | 2b836418af8204878e7e440255a57e600ae5caf3 /board/toradex/colibri_t30 | |
parent | 56720b2ce2168dd708dfed344b2dcc3ad6ce7617 (diff) |
toradex: Use checkboard() instead of show_board_info()
Boards can use a sysinfo driver if a particular model name is needed.
Update this board to use checkboard() directly, rather than having a
weak function laid on top of a weak function.
Make all the checkboard() functions call the new tdx_checkboard() so
that the same information is displayed.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/toradex/colibri_t30')
-rw-r--r-- | board/toradex/colibri_t30/colibri_t30.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/toradex/colibri_t30/colibri_t30.c b/board/toradex/colibri_t30/colibri_t30.c index b6b004669c2..8cef098c8e5 100644 --- a/board/toradex/colibri_t30/colibri_t30.c +++ b/board/toradex/colibri_t30/colibri_t30.c @@ -32,7 +32,7 @@ int checkboard(void) { puts("Model: Toradex Colibri T30 1GB\n"); - return 0; + return tdx_checkboard(); } #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) |