diff options
author | Simon Glass <sjg@chromium.org> | 2023-11-12 19:58:22 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-11-28 12:53:03 -0500 |
commit | 53c4ef0e65efd763bf88f0cdb680b857dd4aba6d (patch) | |
tree | fc892e857114759484afc36608413149035a160c | |
parent | ef211ab252d7a45f033d59a90d8e0575ce1a0d2d (diff) |
meson: 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.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
-rw-r--r-- | arch/arm/mach-meson/board-info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-meson/board-info.c b/arch/arm/mach-meson/board-info.c index 2421acd817e..95a29da0722 100644 --- a/arch/arm/mach-meson/board-info.c +++ b/arch/arm/mach-meson/board-info.c @@ -168,7 +168,7 @@ static unsigned int get_socinfo(void) return socinfo; } -int show_board_info(void) +int checkboard(void) { unsigned int socinfo; |