mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-27 15:24:54 +00:00
fix(arm): resolve dangling comments around macros
Fix dangling comments around define guards, addressing leftovers from
fe94a21a6
("fix(arm): move HW_CONFIG relocation into BL31") which
implicitly removed constraints on using HW_CONFIG with RESET_TO_BL2.
Change-Id: I19d61812fed6fa4b668875e5bf4eafd1a8a660f6
Signed-off-by: Harrison Mutai <harrison.mutai@arm.com>
This commit is contained in:
parent
e372c29153
commit
523c78704f
1 changed files with 2 additions and 2 deletions
|
@ -392,7 +392,7 @@ void arm_bl31_platform_setup(void)
|
||||||
te = transfer_list_add(ns_tl, TL_TAG_FDT, te->data_size,
|
te = transfer_list_add(ns_tl, TL_TAG_FDT, te->data_size,
|
||||||
transfer_list_entry_data(te));
|
transfer_list_entry_data(te));
|
||||||
assert(te != NULL);
|
assert(te != NULL);
|
||||||
#endif /* TRANSFER_LIST */
|
#endif /* TRANSFER_LIST && !RESET_TO_BL31 */
|
||||||
|
|
||||||
/* Initialize the GIC driver, cpu and distributor interfaces */
|
/* Initialize the GIC driver, cpu and distributor interfaces */
|
||||||
plat_arm_gic_driver_init();
|
plat_arm_gic_driver_init();
|
||||||
|
@ -447,7 +447,7 @@ void arm_bl31_plat_runtime_setup(void)
|
||||||
* they can access the updated data even if caching is not enabled.
|
* they can access the updated data even if caching is not enabled.
|
||||||
*/
|
*/
|
||||||
flush_dcache_range((uintptr_t)ns_tl, ns_tl->size);
|
flush_dcache_range((uintptr_t)ns_tl, ns_tl->size);
|
||||||
#endif /* TRANSFER_LIST && !(RESET_TO_BL2 || RESET_TO_BL31) */
|
#endif /* TRANSFER_LIST && !RESET_TO_BL31 */
|
||||||
|
|
||||||
#if RECLAIM_INIT_CODE
|
#if RECLAIM_INIT_CODE
|
||||||
arm_free_init_memory();
|
arm_free_init_memory();
|
||||||
|
|
Loading…
Add table
Reference in a new issue