Re: [PATCH 3/8] spl: atf: provide a bl2_plat_get_bl31_params_default()

2020-11-18 Thread Michal Simek
On 18. 11. 20 15:23, Michal Simek wrote: > > > On 16. 11. 20 22:47, Michael Walle wrote: >> Move the actual implementation of the bl2_plat_get_bl31_params() to its >> own function. The weak function will just call the default >> implementation. This has the advantage that board code can still

Re: [PATCH 3/8] spl: atf: provide a bl2_plat_get_bl31_params_default()

2020-11-18 Thread Michal Simek
On 16. 11. 20 22:47, Michael Walle wrote: > Move the actual implementation of the bl2_plat_get_bl31_params() to its > own function. The weak function will just call the default > implementation. This has the advantage that board code can still call > the original implementation if it just want

[PATCH 3/8] spl: atf: provide a bl2_plat_get_bl31_params_default()

2020-11-16 Thread Michael Walle
Move the actual implementation of the bl2_plat_get_bl31_params() to its own function. The weak function will just call the default implementation. This has the advantage that board code can still call the original implementation if it just want to modify minor things. Signed-off-by: Michael Walle