soc/mtk_adsp: Add missing z_prep_c() prototype

The early boot function got renamed to a pseudo-standard "z_prep_c",
but this isn't an actual API and doesn't have a prototype in the
headers anywhere, so the compiler started whining about an undeclared
function.

Signed-off-by: Andy Ross <andyross@google.com>
This commit is contained in:
Andy Ross 2024-10-30 11:31:36 -07:00 committed by Benjamin Cabé
commit 3c0269f4f6

View file

@ -179,5 +179,6 @@ void c_boot(void)
/* Default console, a driver can override this later */
__stdout_hook_install(arch_printk_char_out);
void z_prep_c(void);
z_prep_c();
}