Linux Audio

Check our new training course

Loading...
v4.10.11
 1#include <linux/init.h>
 2#include <linux/debugfs.h>
 3#include <linux/slab.h>
 
 4
 5#include "debugfs.h"
 6
 7static struct dentry *d_xen_debug;
 8
 9struct dentry * __init xen_init_debugfs(void)
10{
11	if (!d_xen_debug) {
12		d_xen_debug = debugfs_create_dir("xen", NULL);
13
14		if (!d_xen_debug)
15			pr_warning("Could not create 'xen' debugfs directory\n");
16	}
17
18	return d_xen_debug;
19}
20
v4.6
 1#include <linux/init.h>
 2#include <linux/debugfs.h>
 3#include <linux/slab.h>
 4#include <linux/module.h>
 5
 6#include "debugfs.h"
 7
 8static struct dentry *d_xen_debug;
 9
10struct dentry * __init xen_init_debugfs(void)
11{
12	if (!d_xen_debug) {
13		d_xen_debug = debugfs_create_dir("xen", NULL);
14
15		if (!d_xen_debug)
16			pr_warning("Could not create 'xen' debugfs directory\n");
17	}
18
19	return d_xen_debug;
20}
21