Re: [PATCH v4 1/3] env: split env_import_redund() into 2 functions

2020-10-30 Thread Tom Rini
On Sat, Oct 10, 2020 at 10:28:04AM +0200, Heiko Schocher wrote: > split from env_import_redund() the part which checks > which Environment is valid into a separate function > called env_check_redund() and call it from env_import_redund(). > > So env_check_redund() can be used from places which al

Re: [PATCH v4 1/3] env: split env_import_redund() into 2 functions

2020-10-11 Thread Simon Glass
On Sat, 10 Oct 2020 at 02:28, Heiko Schocher wrote: > > split from env_import_redund() the part which checks > which Environment is valid into a separate function > called env_check_redund() and call it from env_import_redund(). > > So env_check_redund() can be used from places which also > need t

[PATCH v4 1/3] env: split env_import_redund() into 2 functions

2020-10-10 Thread Heiko Schocher
split from env_import_redund() the part which checks which Environment is valid into a separate function called env_check_redund() and call it from env_import_redund(). So env_check_redund() can be used from places which also need to do this checks. Signed-off-by: Heiko Schocher --- The return