Skip to content

Commit 8c4eec7

Browse files
kv2019ifabiobaltieri
authored andcommitted
intel_adsp: boot_complete must be done PRE_KERNEL_1
Commit 759e07b ("intel_adsp: move memory window setup to PRE_KERNEL_1") moved memory window setup from EARLY to PRE_KERNEL_1. Similar change must be done to boot_complete, or otherwise boot-up sequence will not be completed correctly on all platforms. Suggested-by: Anas Nashif <[email protected]> Signed-off-by: Kai Vehmanen <[email protected]>
1 parent 113600e commit 8c4eec7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

soc/xtensa/intel_adsp/common/boot_complete.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ int boot_complete(void)
2929
return 0;
3030
}
3131

32-
SYS_INIT(boot_complete, EARLY, CONFIG_KERNEL_INIT_PRIORITY_DEVICE);
32+
SYS_INIT(boot_complete, PRE_KERNEL_1, CONFIG_KERNEL_INIT_PRIORITY_DEVICE);

0 commit comments

Comments
 (0)