mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-18 06:58:54 +00:00
ARM: tegra: add SoC-level hook for board_late_init()
Extend the Tegra186 implementation of board_late_init() to call a per-SoC "hook" function. This will allow SoC-specific (rather than Tegra-wide) functionality to be implemented without the core Tegra code needing to be aware of the details. While board186.c is currently only used for Tegra186, it should be applicable to any other future SoC, and perhaps its simple design could be back-ported to older SoCs in the future too. Signed-off-by: Stephen Warren <swarren@nvidia.com> Reviewed-by: Simon Glass <sjg@chromium.org> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
ba4dfef146
commit
86919a2306
1 changed files with 6 additions and 1 deletions
|
@ -24,7 +24,12 @@ int board_init(void)
|
|||
return tegra_board_init();
|
||||
}
|
||||
|
||||
int board_late_init(void)
|
||||
__weak int tegra_soc_board_init_late(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int board_late_init(void)
|
||||
{
|
||||
return tegra_soc_board_init_late();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue