On Tue, Apr 7, 2026 at 3:30 PM Peter Barada <[email protected]> wrote:
> Looking through nuttx/arch/arm/include/imx.h, I see the following > symbols definitions that cause redefinition warnings: > > #define IMX_IRQ_VPU 35 /* JPEG codec interrupt request */ > #define IMX_IRQ_VPU 44 /* VPU interrupt request */ > ... > #define IMX_IRQ_IPU2 39 /* IPU2 error interrupt request */ > #define IMX_IRQ_IPU2 40 /* IPU2 sync interrupt request */ > ... > #define IMX_IRQ_SNVS 36 /* PMIC power off request */ > #define IMX_IRQ_SNVS 51 /* SRTC consolidated interrupt */ > #define IMX_IRQ_SNVS 52 /* SRTC security interrupt */ > > Which single definitions should be removed, 35 for IMX_IRQ_VPU, 39 for > IMX_IRQ_IPU2, 36&51 for IMX_IRQ_SNVS? > > -- > Peter Barada > [email protected] This seems like a copy-paste error, like maybe the lines were duplicated by copying and pasting and then the author changed the numbers and the comments but forgot to change the identifiers. I don't know for sure. You could use git blame to identify the commit, then use that to find the PR, to get more context. Maybe find the PR author and ask them for more information. Hope this helps, Nathan <[email protected]>
