From 754b2a0de19588daa794a7add9bca1259df1c9ca Mon Sep 17 00:00:00 2001 From: Erhan Kurubas Date: Thu, 12 Oct 2023 13:04:45 +0200 Subject: [PATCH] fix(interrupts): reorder esp32s3 irq names to align with the respective irq numbers --- components/soc/esp32s3/interrupts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/soc/esp32s3/interrupts.c b/components/soc/esp32s3/interrupts.c index 3f074b00b9..82c9924a35 100644 --- a/components/soc/esp32s3/interrupts.c +++ b/components/soc/esp32s3/interrupts.c @@ -80,8 +80,8 @@ const char *const esp_isr_names[ETS_MAX_INTR_SOURCE] = { [74] = "DMA_OUT_CH3", [75] = "DMA_OUT_CH4", [76] = "RSA", - [77] = "SHA", - [78] = "AES", + [77] = "AES", + [78] = "SHA", [79] = "FROM_CPU_INTR0", [80] = "FROM_CPU_INTR1", [81] = "FROM_CPU_INTR2",