summaryrefslogtreecommitdiffstats
path: root/bsps/arm/lpc24xx
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2023-01-23 15:48:48 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2023-01-24 09:56:53 +0100
commitd36070fec8758a745a0b33f1ffa9f8192fceec51 (patch)
tree1fc77b95d0588a6288dae6f2869fce3443a88221 /bsps/arm/lpc24xx
parentcpuuse: Use standard wording and group name (diff)
downloadrtems-d36070fec8758a745a0b33f1ffa9f8192fceec51.tar.bz2
intr: Add Interrupt Manager implementation group
The shared BSP interrupt controller support code actually implements parts of the Interrupt Manager. Update #3706.
Diffstat (limited to 'bsps/arm/lpc24xx')
-rw-r--r--bsps/arm/lpc24xx/include/bsp/irq.h4
-rw-r--r--bsps/arm/lpc24xx/irq/irq-dispatch.c2
-rw-r--r--bsps/arm/lpc24xx/irq/irq.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/bsps/arm/lpc24xx/include/bsp/irq.h b/bsps/arm/lpc24xx/include/bsp/irq.h
index 524a7f1f51..ff1135e48c 100644
--- a/bsps/arm/lpc24xx/include/bsp/irq.h
+++ b/bsps/arm/lpc24xx/include/bsp/irq.h
@@ -3,7 +3,7 @@
/**
* @file
*
- * @ingroup bsp_interrupt
+ * @ingroup RTEMSImplClassicIntr
*
* @brief LPC24XX interrupt definitions.
*/
@@ -43,7 +43,7 @@
#endif
/**
- * @addtogroup bsp_interrupt
+ * @addtogroup RTEMSImplClassicIntr
*
* @{
*/
diff --git a/bsps/arm/lpc24xx/irq/irq-dispatch.c b/bsps/arm/lpc24xx/irq/irq-dispatch.c
index b244b97b8a..3f12c88c5e 100644
--- a/bsps/arm/lpc24xx/irq/irq-dispatch.c
+++ b/bsps/arm/lpc24xx/irq/irq-dispatch.c
@@ -3,7 +3,7 @@
/**
* @file
*
- * @ingroup bsp_interrupt
+ * @ingroup RTEMSImplClassicIntr
*
* @brief LPC24XX interrupt support.
*/
diff --git a/bsps/arm/lpc24xx/irq/irq.c b/bsps/arm/lpc24xx/irq/irq.c
index a92763131a..025123addb 100644
--- a/bsps/arm/lpc24xx/irq/irq.c
+++ b/bsps/arm/lpc24xx/irq/irq.c
@@ -3,7 +3,7 @@
/**
* @file
*
- * @ingroup bsp_interrupt
+ * @ingroup RTEMSImplClassicIntr
*
* @brief LPC24XX interrupt support.
*/