Re: [PATCH] exynos: Avoid duplicate reset_cpu with SYSRESET enabled

2023-11-14 Thread Minkyu Kang
Hi, 2023년 10월 31일 (화) 02:36, Tom Rini 님이 작성: > On Mon, Oct 30, 2023 at 11:55:02AM -0500, Sam Protsenko wrote: > > > The sysreset uclass unconditionally provides a definition of the > > reset_cpu() function. So does the exynos soc code. Fix the build with > > SYSRESET enabled by omitting the func

Re: [PATCH] exynos: Avoid duplicate reset_cpu with SYSRESET enabled

2023-10-30 Thread Tom Rini
On Mon, Oct 30, 2023 at 11:55:02AM -0500, Sam Protsenko wrote: > The sysreset uclass unconditionally provides a definition of the > reset_cpu() function. So does the exynos soc code. Fix the build with > SYSRESET enabled by omitting the function from the soc code in that > case. The code still nee

[PATCH] exynos: Avoid duplicate reset_cpu with SYSRESET enabled

2023-10-30 Thread Sam Protsenko
The sysreset uclass unconditionally provides a definition of the reset_cpu() function. So does the exynos soc code. Fix the build with SYSRESET enabled by omitting the function from the soc code in that case. The code still needs to be kept around for use in SPL. This commit was inspired by commit