aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/include/asm/nmi.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/include/asm/nmi.h')
-rw-r--r--arch/arm/include/asm/nmi.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/arm/include/asm/nmi.h b/arch/arm/include/asm/nmi.h
new file mode 100644
index 0000000..3cf8bdf
--- /dev/null
+++ b/arch/arm/include/asm/nmi.h
@@ -0,0 +1,14 @@
+#ifndef __ASM_ARM_NMI_H_
+#define __ASM_ARM_NMI_H_
+
+#include <linux/notifier.h>
+
+extern struct atomic_notifier_head touch_watchdog_notifier_head;
+
+static inline void touch_nmi_watchdog(void)
+{
+ atomic_notifier_call_chain(&touch_watchdog_notifier_head, 0, 0);
+ touch_softlockup_watchdog();
+}
+
+#endif /* __ASM_ARM_NMI_H_ */