fix typo in PICO_RUNTIME_SKIP_INIT_POST_CLOCK_RESETS (was missing INIT) (#2457)

This commit is contained in:
Graham Sanderson 2025-05-11 20:34:17 -05:00 committed by GitHub
parent 792f55628e
commit 550aa09624
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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