]> Git Repo - linux.git/blob - arch/s390/kernel/kdebugfs.c
fs/binfmt_elf: use PT_LOAD p_align values for static PIE
[linux.git] / arch / s390 / kernel / kdebugfs.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/debugfs.h>
3 #include <linux/export.h>
4 #include <linux/init.h>
5
6 struct dentry *arch_debugfs_dir;
7 EXPORT_SYMBOL(arch_debugfs_dir);
8
9 static int __init arch_kdebugfs_init(void)
10 {
11         arch_debugfs_dir = debugfs_create_dir("s390", NULL);
12         return 0;
13 }
14 postcore_initcall(arch_kdebugfs_init);
This page took 0.03078 seconds and 4 git commands to generate.