From e653bd43a21564cc181063406137d9cd42abfb10 Mon Sep 17 00:00:00 2001 From: Enrico Zelioli Date: Tue, 3 Dec 2024 21:52:18 +0100 Subject: [PATCH] fixup! Extend ZSL for SMP --- sw/boot/zsl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sw/boot/zsl.c b/sw/boot/zsl.c index 5c68e2a4..ed682f7b 100644 --- a/sw/boot/zsl.c +++ b/sw/boot/zsl.c @@ -86,7 +86,8 @@ int main(void) { } // Launch payload - printf("[ZSL] Launch firmware at %lx with device tree at %lx\r\n", __BOOT_ZSL_FW, __BOOT_ZSL_DTB); + printf("[ZSL] Launch firmware at %lx with device tree at %lx\r\n", __BOOT_ZSL_FW, + __BOOT_ZSL_DTB); smp_resume(); }