Commit 3c0269f4 authored by Andy Ross's avatar Andy Ross Committed by Benjamin Cabé
Browse files

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: default avatarAndy Ross <andyross@google.com>
parent 4b3874b9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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();
}