Re: [RESEND PATCH 5/7] common: board_r: move init_addr_map() to init.h

2021-12-28 Thread Simon Glass
On Sat, 25 Dec 2021 at 12:57, Ovidiu Panait wrote: > > asm/mmu.h include is currently guarded by CONFIG_ADDR_MAP ifdef because > the header is only present on arm and powerpc. In order to remove the > dependency on this header and the associated ifdef, move init_addr_map() > declaration to init.h,

[RESEND PATCH 5/7] common: board_r: move init_addr_map() to init.h

2021-12-25 Thread Ovidiu Panait
asm/mmu.h include is currently guarded by CONFIG_ADDR_MAP ifdef because the header is only present on arm and powerpc. In order to remove the dependency on this header and the associated ifdef, move init_addr_map() declaration to init.h, since it is only called during the common init sequence. Sig

[PATCH 5/7] common: board_r: move init_addr_map() to init.h

2021-10-29 Thread Ovidiu Panait
asm/mmu.h include is currently guarded by CONFIG_ADDR_MAP ifdef because the header is only present on arm and powerpc. In order to remove the dependency on this header and the associated ifdef, move init_addr_map() declaration to init.h, since it is only called during the common init sequence. Sig