xref: /openbsd/sys/dev/pci/drm/include/linux/debugfs.h (revision f005ef32)
1 /* Public domain. */
2 
3 #ifndef _LINUX_DEBUGFS_H
4 #define _LINUX_DEBUGFS_H
5 
6 struct debugfs_regset32 {
7 };
8 
9 #define debugfs_create_atomic_t(a, b, c, d)
10 #define debugfs_remove(a)
11 #define debugfs_create_dir(a, b)		ERR_PTR(-ENOSYS)
12 #define debugfs_create_file(a, b, c, d, e)	ERR_PTR(-ENOSYS)
13 #define debugfs_create_file_unsafe(a, b, c, d, e)	ERR_PTR(-ENOSYS)
14 #define debugfs_create_bool(a, b, c, d)
15 
16 #define DEFINE_DEBUGFS_ATTRIBUTE(a, b, c, d)
17 
18 #endif
19