Linux 4.13.16
[linux/fpc-iii.git] / arch / s390 / kernel / kdebugfs.c
blobee85e17dd79dd8c7003263c6c45cf88bf9cb3c6d
1 #include <linux/debugfs.h>
2 #include <linux/export.h>
3 #include <linux/init.h>
5 struct dentry *arch_debugfs_dir;
6 EXPORT_SYMBOL(arch_debugfs_dir);
8 static int __init arch_kdebugfs_init(void)
10 arch_debugfs_dir = debugfs_create_dir("s390", NULL);
11 if (IS_ERR(arch_debugfs_dir))
12 arch_debugfs_dir = NULL;
13 return 0;
15 postcore_initcall(arch_kdebugfs_init);