From 550aa09624391dfbc3afae55ede3e008a3879614 Mon Sep 17 00:00:00 2001 From: Graham Sanderson Date: Sun, 11 May 2025 20:34:17 -0500 Subject: [PATCH] fix typo in PICO_RUNTIME_SKIP_INIT_POST_CLOCK_RESETS (was missing INIT) (#2457) --- src/rp2_common/pico_runtime_init/runtime_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rp2_common/pico_runtime_init/runtime_init.c b/src/rp2_common/pico_runtime_init/runtime_init.c index 2e1ce89f..5e1ad04a 100644 --- a/src/rp2_common/pico_runtime_init/runtime_init.c +++ b/src/rp2_common/pico_runtime_init/runtime_init.c @@ -152,7 +152,7 @@ void __weak runtime_init_post_clock_resets(void) { } #endif -#if !PICO_RUNTIME_SKIP_POST_CLOCK_RESETS +#if !PICO_RUNTIME_SKIP_INIT_POST_CLOCK_RESETS PICO_RUNTIME_INIT_FUNC_HW(runtime_init_post_clock_resets, PICO_RUNTIME_INIT_POST_CLOCK_RESETS); #endif