Re: [PATCH 2/3] timer-uclass: relocate ops pointers for CONFIG_NEEDS_MANUAL_RELOC

2022-10-12 Thread Ovidiu Panait
Hi Simon, On 10/12/22 15:59, Simon Glass wrote: On Tue, 11 Oct 2022 at 23:37, Ovidiu Panait wrote: Relocate timer_ops pointers when CONFIG_NEEDS_MANUAL_RELOC is enabled. The (gd->flags & GD_FLG_RELOC) check was added to make sure the reloc_done logic works for drivers that use DM_FLAG_PRE_REL

Re: [PATCH 2/3] timer-uclass: relocate ops pointers for CONFIG_NEEDS_MANUAL_RELOC

2022-10-12 Thread Simon Glass
On Tue, 11 Oct 2022 at 23:37, Ovidiu Panait wrote: > > Relocate timer_ops pointers when CONFIG_NEEDS_MANUAL_RELOC is enabled. > > The (gd->flags & GD_FLG_RELOC) check was added to make sure the reloc_done > logic works for drivers that use DM_FLAG_PRE_RELOC. > > Signed-off-by: Ovidiu Panait > ---