mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-15 19:51:37 +00:00
arm: mach-k3: common: Add a release_resources_for_core_shutdown() stub
Add a weak release_resources_for_core_shutdown() stub implementation that can be overridden by actual implementation if a SoC supports that function. Signed-off-by: Suman Anna <s-anna@ti.com> Reviewed-by: Nishanth Menon <nm@ti.com>
This commit is contained in:
parent
0466275500
commit
d86a089d29
1 changed files with 5 additions and 0 deletions
|
@ -193,6 +193,11 @@ int load_firmware(char *name_fw, char *name_loadaddr, u32 *loadaddr)
|
|||
}
|
||||
#endif
|
||||
|
||||
__weak void release_resources_for_core_shutdown(void)
|
||||
{
|
||||
debug("%s not implemented...\n", __func__);
|
||||
}
|
||||
|
||||
void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
|
||||
{
|
||||
typedef void __noreturn (*image_entry_noargs_t)(void);
|
||||
|
|
Loading…
Add table
Reference in a new issue