xref: /openbsd-src/sys/dev/pci/drm/include/linux/lockdep.h (revision 7350f337b9e3eb4461d99580e625c7ef148d107c)
1 /* Public domain. */
2 
3 #ifndef _LINUX_LOCKDEP_H
4 #define _LINUX_LOCKDEP_H
5 
6 struct lock_class_key {
7 };
8 
9 #define might_lock(lock)
10 #define lockdep_assert_held(lock)	do { (void)(lock); } while(0)
11 #define lock_acquire(lock, a, b, c, d, e, f)
12 #define lock_release(lock, a, b)
13 #define lock_acquire_shared_recursive(lock, a, b, c, d)
14 #define lockdep_set_subclass(a, b)
15 
16 #endif
17