blob: 6474a8f53c51dd77050e2be7988fb7fd918c1d38 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <bootblock_common.h>
#include <soc/mmu_operations.h>
void bootblock_soc_early_init(void)
{
if (CONFIG(EARLY_MMU_INIT))
mtk_mmu_init();
}
|