mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
linuxkpi: Define debugfs_initialized()
It always return true on FreeBSD, at least for now, because all DRM drivers using it depend on lindebugfs. Reviewed by: manu Approved by: manu
This commit is contained in:
parent
d2070e5fa9
commit
4dac88cd15
1 changed files with 7 additions and 0 deletions
|
|
@ -52,6 +52,13 @@ struct debugfs_blob_wrapper {
|
|||
size_t size;
|
||||
};
|
||||
|
||||
static inline bool
|
||||
debugfs_initialized(void)
|
||||
{
|
||||
|
||||
return (true);
|
||||
}
|
||||
|
||||
struct dentry *debugfs_create_file(const char *name, umode_t mode,
|
||||
struct dentry *parent, void *data,
|
||||
const struct file_operations *fops);
|
||||
|
|
|
|||
Loading…
Reference in a new issue