@@ -208,7 +208,7 @@ struct z_shared_isr_table_entry z_shared_sw_isr_table[];
208
208
/* Separated macro to create ISR table entry only.
209
209
* Used by Z_ISR_DECLARE and ISR tables generation script.
210
210
*/
211
- #define _Z_ISR_TABLE_ENTRY (irq , func , param , sect ) \
211
+ #define _Z_ISR_TABLE_ENTRY (func , param , sect ) \
212
212
static Z_DECL_ALIGN(struct _isr_table_entry) \
213
213
__attribute__((section(sect))) \
214
214
__used _MK_ISR_ELEMENT_NAME(func, __COUNTER__) = { \
@@ -220,7 +220,7 @@ struct z_shared_isr_table_entry z_shared_sw_isr_table[];
220
220
_Z_ISR_DECLARE_C(irq, flags, func, param, counter)
221
221
222
222
#define _Z_ISR_DECLARE_C (irq , flags , func , param , counter ) \
223
- _Z_ISR_TABLE_ENTRY(irq, func, param, _MK_ISR_ELEMENT_SECTION(counter)); \
223
+ _Z_ISR_TABLE_ENTRY(func, param, _MK_ISR_ELEMENT_SECTION(counter)); \
224
224
static Z_DECL_ALIGN(struct _isr_list_sname) Z_GENERIC_SECTION(.intList) __used \
225
225
_MK_ISR_NAME(func, counter) = {irq, flags, {_MK_ISR_ELEMENT_SECTION(counter)}}
226
226
@@ -237,7 +237,7 @@ struct z_shared_isr_table_entry z_shared_sw_isr_table[];
237
237
/* Separated macro to create ISR Direct table entry only.
238
238
* Used by Z_ISR_DECLARE_DIRECT and ISR tables generation script.
239
239
*/
240
- #define _Z_ISR_DIRECT_TABLE_ENTRY (irq , func , sect ) \
240
+ #define _Z_ISR_DIRECT_TABLE_ENTRY (func , sect ) \
241
241
COND_CODE_1(CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_ADDRESS, ( \
242
242
static Z_DECL_ALIGN(uintptr_t) \
243
243
__attribute__((section(sect))) \
@@ -255,7 +255,7 @@ struct z_shared_isr_table_entry z_shared_sw_isr_table[];
255
255
_Z_ISR_DECLARE_DIRECT_C(irq, flags, func, counter)
256
256
257
257
#define _Z_ISR_DECLARE_DIRECT_C (irq , flags , func , counter ) \
258
- _Z_ISR_DIRECT_TABLE_ENTRY(irq, func, _MK_IRQ_ELEMENT_SECTION(counter)); \
258
+ _Z_ISR_DIRECT_TABLE_ENTRY(func, _MK_IRQ_ELEMENT_SECTION(counter)); \
259
259
static Z_DECL_ALIGN(struct _isr_list_sname) Z_GENERIC_SECTION(.intList) \
260
260
__used _MK_ISR_NAME(func, counter) = { \
261
261
irq, \
0 commit comments