xref: /openbsd-src/sys/dev/pci/drm/include/linux/notifier.h (revision 4b70baf6e17fc8b27fc1f7fa7929335753fa94c3)
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