change(soc): Fix spelling mistake in soc/interrupts.h

Merges https://github.com/espressif/esp-idf/pull/15273
Closes https://github.com/espressif/esp-idf/issues/15272
This commit is contained in:
Brett Regnier
2025-01-23 14:45:22 -07:00
committed by morris
parent 809507903f
commit 01abdcbe43
10 changed files with 31 additions and 15 deletions

View File

@@ -81,7 +81,9 @@ typedef enum {
ETS_BAK_PMS_VIOLATE_INTR_SOURCE,
ETS_CACHE_CORE0_ACS_INTR_SOURCE,
ETS_MAX_INTR_SOURCE,
} periph_interrput_t;
} periph_interrupt_t;
typedef periph_interrupt_t periph_interrput_t __attribute__((deprecated("in favor of periph_interrupt_t")));
extern const char * const esp_isr_names[ETS_MAX_INTR_SOURCE];