Merge branch 'fix/panic_arch_size' into 'master'

fix(esp_system): fix cache error size message

Closes IDF-11769

See merge request espressif/esp-idf!35112
This commit is contained in:
Omar Chebib
2024-12-26 14:58:22 +08:00

View File

@@ -213,7 +213,7 @@ static inline void print_cache_err_details(const void *f)
} }
if (err.size) { if (err.size) {
panic_print_str(", error size: 0x"); panic_print_str(", error size: 0x");
panic_print_hex(err.vaddr); panic_print_hex(err.size);
} }
} else { } else {
// Default to cache disabled message if no specific error is found // Default to cache disabled message if no specific error is found