summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/drm/include/linux/notifier.h
blob: ff376a2cc3fa65bdec06bd24b52ffe6a8ad2994f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Public domain. */

#ifndef _LINUX_NOTIFIER_H
#define _LINUX_NOTIFIER_H

struct notifier_block {
	void *notifier_call;
};

#define ATOMIC_INIT_NOTIFIER_HEAD(x)

#define NOTIFY_DONE	0
#define NOTIFY_OK	1
#define NOTIFY_BAD	2

#endif