mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-16 23:07:00 +00:00
arm: mvebu: turris_omnia: Use show_board_info()
We are printing board information in checkboard() function, which is called from the default weak implementation of show_board_info(). Rename checkboard() to show_board_info(). This throws away the weak implementation of show_board_info(). Signed-off-by: Marek Behún <marek.behun@nic.cz> Reviewed-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
1335e31ecc
commit
dc096a5e90
1 changed files with 2 additions and 2 deletions
|
@ -468,7 +468,7 @@ static struct udevice *get_atsha204a_dev(void)
|
|||
return dev;
|
||||
}
|
||||
|
||||
int checkboard(void)
|
||||
int show_board_info(void)
|
||||
{
|
||||
u32 version_num, serial_num;
|
||||
int err = 1;
|
||||
|
@ -496,7 +496,7 @@ int checkboard(void)
|
|||
}
|
||||
|
||||
out:
|
||||
printf("Turris Omnia:\n");
|
||||
printf("Model: Turris Omnia\n");
|
||||
printf(" RAM size: %i MiB\n", omnia_get_ram_size_gb() * 1024);
|
||||
if (err)
|
||||
printf(" Serial Number: unknown\n");
|
||||
|
|
Loading…
Add table
Reference in a new issue