arm64/irq.h: Fix the issue of including incorrect order

<nuttx/irq.h> will use the macros defined in <arch/chip/irq.h>, so the include order should be after it

Signed-off-by: wangmingrong1 <wangmingrong1@xiaomi.com>
This commit is contained in:
wangmingrong1
2025-08-22 13:44:17 +08:00
committed by Xiang Xiao
parent 4429e3d3ea
commit 95ef6753ad
+4 -4
View File
@@ -40,14 +40,14 @@
# include <nuttx/macro.h>
#endif
/* Include NuttX-specific IRQ definitions */
#include <nuttx/irq.h>
/* Include chip-specific IRQ definitions (including IRQ numbers) */
#include <arch/chip/irq.h>
/* Include NuttX-specific IRQ definitions */
#include <nuttx/irq.h>
/****************************************************************************
* Pre-processor Prototypes
****************************************************************************/