Re: [PATCH v1 1/3] mach-snapdragon: Do not define reset_cpu() if SYSRESET is enabled

2025-04-28 Thread Casey Connolly
Hi Varadarajan, Please rebase on U-Boot master. On 4/10/25 14:02, Varadarajan Narayanan wrote: If CONFIG_SYSRESET is enabled, the reset_cpu() function defined in arch/arm/mach-snapdragon/board.c conflicts with the definition of reset_cpu() in drivers/sysreset/sysreset-uclass.c resulting in dupl

Re: [PATCH v1 1/3] mach-snapdragon: Do not define reset_cpu() if SYSRESET is enabled

2025-04-28 Thread Sam Day
Hi Sumit, Varadarajan, On Monday, April 28th, 2025 at 6:25 PM, Sumit Garg wrote: > > > On Thu, Apr 10, 2025 at 05:32:06PM +0530, Varadarajan Narayanan wrote: > > > If CONFIG_SYSRESET is enabled, the reset_cpu() function defined in > > arch/arm/mach-snapdragon/board.c conflicts with the defin

Re: [PATCH v1 1/3] mach-snapdragon: Do not define reset_cpu() if SYSRESET is enabled

2025-04-28 Thread Sumit Garg
On Thu, Apr 10, 2025 at 05:32:06PM +0530, Varadarajan Narayanan wrote: > If CONFIG_SYSRESET is enabled, the reset_cpu() function defined in > arch/arm/mach-snapdragon/board.c conflicts with the definition of > reset_cpu() in drivers/sysreset/sysreset-uclass.c resulting in duplicate > symbol error w

[PATCH v1 1/3] mach-snapdragon: Do not define reset_cpu() if SYSRESET is enabled

2025-04-10 Thread Varadarajan Narayanan
If CONFIG_SYSRESET is enabled, the reset_cpu() function defined in arch/arm/mach-snapdragon/board.c conflicts with the definition of reset_cpu() in drivers/sysreset/sysreset-uclass.c resulting in duplicate symbol error while compiling. So, do not include it if CONFIG_SYSRESET is enabled. Signed-of