Fix another victim of the mass name changes: xyz_errmonitor->xyz_dbgmonitor

This commit is contained in:
Gregory Nutt 2016-06-17 07:00:33 -06:00
parent 9b55cc6bfe
commit 0d3ecb3ddd
14 changed files with 34 additions and 34 deletions

View File

@ -157,7 +157,7 @@ static void efm32_dumpnvic(const char *msg, int irq)
/****************************************************************************
* Name: efm32_nmi, efm32_busfault, efm32_usagefault, efm32_pendsv,
* efm32_errmonitor, efm32_pendsv, efm32_reserved
* efm32_dbgmonitor, efm32_pendsv, efm32_reserved
*
* Description:
* Handlers for various exceptions. None are handled and all are fatal
@ -199,7 +199,7 @@ static int efm32_pendsv(int irq, FAR void *context)
return 0;
}
static int efm32_errmonitor(int irq, FAR void *context)
static int efm32_dbgmonitor(int irq, FAR void *context)
{
(void)up_irq_save();
_err("PANIC!!! Debug Monitor received\n");
@ -458,7 +458,7 @@ void up_irqinitialize(void)
irq_attach(EFM32_IRQ_BUSFAULT, efm32_busfault);
irq_attach(EFM32_IRQ_USAGEFAULT, efm32_usagefault);
irq_attach(EFM32_IRQ_PENDSV, efm32_pendsv);
irq_attach(EFM32_IRQ_DBGMONITOR, efm32_errmonitor);
irq_attach(EFM32_IRQ_DBGMONITOR, efm32_dbgmonitor);
irq_attach(EFM32_IRQ_RESERVED, efm32_reserved);
#endif

View File

@ -160,7 +160,7 @@ static void kinetis_dumpnvic(const char *msg, int irq)
/****************************************************************************
* Name: kinetis_nmi, kinetis_busfault, kinetis_usagefault, kinetis_pendsv,
* kinetis_errmonitor, kinetis_pendsv, kinetis_reserved
* kinetis_dbgmonitor, kinetis_pendsv, kinetis_reserved
*
* Description:
* Handlers for various execptions. None are handled and all are fatal
@ -202,7 +202,7 @@ static int kinetis_pendsv(int irq, FAR void *context)
return 0;
}
static int kinetis_errmonitor(int irq, FAR void *context)
static int kinetis_dbgmonitor(int irq, FAR void *context)
{
(void)up_irq_save();
_err("PANIC!!! Debug Monitor received\n");
@ -429,7 +429,7 @@ void up_irqinitialize(void)
irq_attach(KINETIS_IRQ_BUSFAULT, kinetis_busfault);
irq_attach(KINETIS_IRQ_USAGEFAULT, kinetis_usagefault);
irq_attach(KINETIS_IRQ_PENDSV, kinetis_pendsv);
irq_attach(KINETIS_IRQ_DBGMONITOR, kinetis_errmonitor);
irq_attach(KINETIS_IRQ_DBGMONITOR, kinetis_dbgmonitor);
irq_attach(KINETIS_IRQ_RESERVED, kinetis_reserved);
#endif

View File

@ -128,7 +128,7 @@ static void kl_dumpnvic(const char *msg, int irq)
/****************************************************************************
* Name: kl_nmi, kl_busfault, kl_usagefault, kl_pendsv,
* kl_errmonitor, kl_pendsv, kl_reserved
* kl_dbgmonitor, kl_pendsv, kl_reserved
*
* Description:
* Handlers for various execptions. None are handled and all are fatal

View File

@ -124,7 +124,7 @@ static void lpc11_dumpnvic(const char *msg, int irq)
/****************************************************************************
* Name: lpc11_nmi, lpc11_busfault, lpc11_usagefault, lpc11_pendsv,
* lpc11_errmonitor, lpc11_pendsv, lpc11_reserved
* lpc11_dbgmonitor, lpc11_pendsv, lpc11_reserved
*
* Description:
* Handlers for various execptions. None are handled and all are fatal

View File

@ -139,7 +139,7 @@ static void lpc17_dumpnvic(const char *msg, int irq)
/****************************************************************************
* Name: lpc17_nmi, lpc17_busfault, lpc17_usagefault, lpc17_pendsv,
* lpc17_errmonitor, lpc17_pendsv, lpc17_reserved
* lpc17_dbgmonitor, lpc17_pendsv, lpc17_reserved
*
* Description:
* Handlers for various execptions. None are handled and all are fatal
@ -181,7 +181,7 @@ static int lpc17_pendsv(int irq, FAR void *context)
return 0;
}
static int lpc17_errmonitor(int irq, FAR void *context)
static int lpc17_dbgmonitor(int irq, FAR void *context)
{
(void)up_irq_save();
_err("PANIC!!! Debug Monitor received\n");
@ -402,7 +402,7 @@ void up_irqinitialize(void)
irq_attach(LPC17_IRQ_BUSFAULT, lpc17_busfault);
irq_attach(LPC17_IRQ_USAGEFAULT, lpc17_usagefault);
irq_attach(LPC17_IRQ_PENDSV, lpc17_pendsv);
irq_attach(LPC17_IRQ_DBGMONITOR, lpc17_errmonitor);
irq_attach(LPC17_IRQ_DBGMONITOR, lpc17_dbgmonitor);
irq_attach(LPC17_IRQ_RESERVED, lpc17_reserved);
#endif

View File

@ -148,7 +148,7 @@ static void lpc43_dumpnvic(const char *msg, int irq)
/****************************************************************************
* Name: lpc43_nmi, lpc43_busfault, lpc43_usagefault, lpc43_pendsv,
* lpc43_errmonitor, lpc43_pendsv, lpc43_reserved
* lpc43_dbgmonitor, lpc43_pendsv, lpc43_reserved
*
* Description:
* Handlers for various exceptions. None are handled and all are fatal
@ -190,7 +190,7 @@ static int lpc43_pendsv(int irq, FAR void *context)
return 0;
}
static int lpc43_errmonitor(int irq, FAR void *context)
static int lpc43_dbgmonitor(int irq, FAR void *context)
{
(void)up_irq_save();
_err("PANIC!!! Debug Monitor received\n");
@ -437,7 +437,7 @@ void up_irqinitialize(void)
irq_attach(LPC43_IRQ_BUSFAULT, lpc43_busfault);
irq_attach(LPC43_IRQ_USAGEFAULT, lpc43_usagefault);
irq_attach(LPC43_IRQ_PENDSV, lpc43_pendsv);
irq_attach(LPC43_IRQ_DBGMONITOR, lpc43_errmonitor);
irq_attach(LPC43_IRQ_DBGMONITOR, lpc43_dbgmonitor);
irq_attach(LPC43_IRQ_RESERVED, lpc43_reserved);
#endif

View File

@ -128,7 +128,7 @@ static void nuc_dumpnvic(const char *msg, int irq)
/****************************************************************************
* Name: nuc_nmi, nuc_busfault, nuc_usagefault, nuc_pendsv,
* nuc_errmonitor, nuc_pendsv, nuc_reserved
* nuc_dbgmonitor, nuc_pendsv, nuc_reserved
*
* Description:
* Handlers for various execptions. None are handled and all are fatal

View File

@ -163,7 +163,7 @@ static void sam_dumpnvic(const char *msg, int irq)
#endif
/****************************************************************************
* Name: sam_nmi, sam_busfault, sam_usagefault, sam_pendsv, sam_errmonitor,
* Name: sam_nmi, sam_busfault, sam_usagefault, sam_pendsv, sam_dbgmonitor,
* sam_pendsv, sam_reserved
*
* Description:
@ -206,7 +206,7 @@ static int sam_pendsv(int irq, FAR void *context)
return 0;
}
static int sam_errmonitor(int irq, FAR void *context)
static int sam_dbgmonitor(int irq, FAR void *context)
{
(void)up_irq_save();
_err("PANIC!!! Debug Monitor received\n");
@ -466,7 +466,7 @@ void up_irqinitialize(void)
irq_attach(SAM_IRQ_BUSFAULT, sam_busfault);
irq_attach(SAM_IRQ_USAGEFAULT, sam_usagefault);
irq_attach(SAM_IRQ_PENDSV, sam_pendsv);
irq_attach(SAM_IRQ_DBGMONITOR, sam_errmonitor);
irq_attach(SAM_IRQ_DBGMONITOR, sam_dbgmonitor);
irq_attach(SAM_IRQ_RESERVED, sam_reserved);
#endif

View File

@ -84,7 +84,7 @@ volatile uint32_t *g_current_regs[1];
/****************************************************************************
* Name: sam_nmi, sam_busfault, sam_usagefault, sam_pendsv,
* sam_errmonitor, sam_pendsv, sam_reserved
* sam_dbgmonitor, sam_pendsv, sam_reserved
*
* Description:
* Handlers for various execptions. None are handled and all are fatal

View File

@ -163,7 +163,7 @@ static void sam_dumpnvic(const char *msg, int irq)
#endif
/****************************************************************************
* Name: sam_nmi, sam_busfault, sam_usagefault, sam_pendsv, sam_errmonitor,
* Name: sam_nmi, sam_busfault, sam_usagefault, sam_pendsv, sam_dbgmonitor,
* sam_pendsv, sam_reserved
*
* Description:
@ -206,7 +206,7 @@ static int sam_pendsv(int irq, FAR void *context)
return 0;
}
static int sam_errmonitor(int irq, FAR void *context)
static int sam_dbgmonitor(int irq, FAR void *context)
{
(void)up_irq_save();
_err("PANIC!!! Debug Monitor received\n");
@ -466,7 +466,7 @@ void up_irqinitialize(void)
irq_attach(SAM_IRQ_BUSFAULT, sam_busfault);
irq_attach(SAM_IRQ_USAGEFAULT, sam_usagefault);
irq_attach(SAM_IRQ_PENDSV, sam_pendsv);
irq_attach(SAM_IRQ_DBGMONITOR, sam_errmonitor);
irq_attach(SAM_IRQ_DBGMONITOR, sam_dbgmonitor);
irq_attach(SAM_IRQ_RESERVED, sam_reserved);
#endif

View File

@ -151,7 +151,7 @@ static void stm32_dumpnvic(const char *msg, int irq)
/****************************************************************************
* Name: stm32_nmi, stm32_busfault, stm32_usagefault, stm32_pendsv,
* stm32_errmonitor, stm32_pendsv, stm32_reserved
* stm32_dbgmonitor, stm32_pendsv, stm32_reserved
*
* Description:
* Handlers for various execptions. None are handled and all are fatal
@ -193,7 +193,7 @@ static int stm32_pendsv(int irq, FAR void *context)
return 0;
}
static int stm32_errmonitor(int irq, FAR void *context)
static int stm32_dbgmonitor(int irq, FAR void *context)
{
(void)up_irq_save();
_err("PANIC!!! Debug Monitor received\n");
@ -418,7 +418,7 @@ void up_irqinitialize(void)
irq_attach(STM32_IRQ_BUSFAULT, stm32_busfault);
irq_attach(STM32_IRQ_USAGEFAULT, stm32_usagefault);
irq_attach(STM32_IRQ_PENDSV, stm32_pendsv);
irq_attach(STM32_IRQ_DBGMONITOR, stm32_errmonitor);
irq_attach(STM32_IRQ_DBGMONITOR, stm32_dbgmonitor);
irq_attach(STM32_IRQ_RESERVED, stm32_reserved);
#endif

View File

@ -175,7 +175,7 @@ static void stm32_dumpnvic(const char *msg, int irq)
#endif
/****************************************************************************
* Name: stm32_nmi, stm32_busfault, stm32_usagefault, stm32_pendsv, stm32_errmonitor,
* Name: stm32_nmi, stm32_busfault, stm32_usagefault, stm32_pendsv, stm32_dbgmonitor,
* stm32_pendsv, stm32_reserved
*
* Description:
@ -218,7 +218,7 @@ static int stm32_pendsv(int irq, FAR void *context)
return 0;
}
static int stm32_errmonitor(int irq, FAR void *context)
static int stm32_dbgmonitor(int irq, FAR void *context)
{
(void)up_irq_save();
_err("PANIC!!! Debug Monitor received\n");
@ -500,7 +500,7 @@ void up_irqinitialize(void)
irq_attach(STM32_IRQ_BUSFAULT, stm32_busfault);
irq_attach(STM32_IRQ_USAGEFAULT, stm32_usagefault);
irq_attach(STM32_IRQ_PENDSV, stm32_pendsv);
irq_attach(STM32_IRQ_DBGMONITOR, stm32_errmonitor);
irq_attach(STM32_IRQ_DBGMONITOR, stm32_dbgmonitor);
irq_attach(STM32_IRQ_RESERVED, stm32_reserved);
#endif

View File

@ -150,7 +150,7 @@ static void stm32l4_dumpnvic(const char *msg, int irq)
/****************************************************************************
* Name: stm32l4_nmi, stm32l4_busfault, stm32l4_usagefault, stm32l4_pendsv,
* stm32l4_errmonitor, stm32l4_pendsv, stm32l4_reserved
* stm32l4_dbgmonitor, stm32l4_pendsv, stm32l4_reserved
*
* Description:
* Handlers for various execptions. None are handled and all are fatal
@ -192,7 +192,7 @@ static int stm32l4_pendsv(int irq, FAR void *context)
return 0;
}
static int stm32l4_errmonitor(int irq, FAR void *context)
static int stm32l4_dbgmonitor(int irq, FAR void *context)
{
(void)up_irq_save();
_err("PANIC!!! Debug Monitor received\n");
@ -413,7 +413,7 @@ void up_irqinitialize(void)
irq_attach(STM32L4_IRQ_BUSFAULT, stm32l4_busfault);
irq_attach(STM32L4_IRQ_USAGEFAULT, stm32l4_usagefault);
irq_attach(STM32L4_IRQ_PENDSV, stm32l4_pendsv);
irq_attach(STM32L4_IRQ_DBGMONITOR, stm32l4_errmonitor);
irq_attach(STM32L4_IRQ_DBGMONITOR, stm32l4_dbgmonitor);
irq_attach(STM32L4_IRQ_RESERVED, stm32l4_reserved);
#endif

View File

@ -186,7 +186,7 @@ static void tiva_dumpnvic(const char *msg, int irq)
/****************************************************************************
* Name: tiva_nmi, tiva_busfault, tiva_usagefault, tiva_pendsv,
* tiva_errmonitor, tiva_pendsv, tiva_reserved
* tiva_dbgmonitor, tiva_pendsv, tiva_reserved
*
* Description:
* Handlers for various execptions. None are handled and all are fatal
@ -228,7 +228,7 @@ static int tiva_pendsv(int irq, FAR void *context)
return 0;
}
static int tiva_errmonitor(int irq, FAR void *context)
static int tiva_dbgmonitor(int irq, FAR void *context)
{
(void)up_irq_save();
_err("PANIC!!! Debug Monitor received\n");
@ -482,7 +482,7 @@ void up_irqinitialize(void)
irq_attach(TIVA_IRQ_BUSFAULT, tiva_busfault);
irq_attach(TIVA_IRQ_USAGEFAULT, tiva_usagefault);
irq_attach(TIVA_IRQ_PENDSV, tiva_pendsv);
irq_attach(TIVA_IRQ_DBGMONITOR, tiva_errmonitor);
irq_attach(TIVA_IRQ_DBGMONITOR, tiva_dbgmonitor);
irq_attach(TIVA_IRQ_RESERVED, tiva_reserved);
#endif