1 /* Public domain. */ 2 3 #ifndef _LINUX_NOTIFIER_H 4 #define _LINUX_NOTIFIER_H 5 6 struct notifier_block { 7 void *notifier_call; 8 }; 9 10 #define ATOMIC_INIT_NOTIFIER_HEAD(x) 11 12 #define NOTIFY_DONE 0 13 #define NOTIFY_OK 1 14 #define NOTIFY_BAD 2 15 16 #endif 17