Rename CONFIG_ARCH_HAVE_TRIGGER_HOOK to CONFIG_ARCH_HAVE_IRQTRIGGER

This commit is contained in:
Gregory Nutt 2018-08-25 09:10:30 -06:00
parent 5d042b41c3
commit 3f1869ea9d
2 changed files with 2 additions and 2 deletions

View File

@ -156,7 +156,7 @@ config ARCH_VECNOTIRQ
bool
default n
config ARCH_HAVE_TRIGGER_HOOK
config ARCH_HAVE_IRQTRIGGER
bool
default n
depends on !ARCH_NOINTC

View File

@ -1455,7 +1455,7 @@ void up_disable_irq(int irq);
*
****************************************************************************/
#ifdef CONFIG_ARCH_HAVE_TRIGGER_HOOK
#ifdef CONFIG_ARCH_HAVE_IRQTRIGGER
void up_trigger_irq(int irq);
#endif