blob: 8b505e1556a5f8b3cd3ddd453cbb797b4470e621 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001// SPDX-License-Identifier: GPL-2.0
2#include <linux/module.h>
3#include <linux/init.h>
4#include <linux/debugfs.h>
5
6struct dentry *arch_debugfs_dir;
7EXPORT_SYMBOL(arch_debugfs_dir);
8
9static int __init arch_kdebugfs_init(void)
10{
11 arch_debugfs_dir = debugfs_create_dir("sh", NULL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000012 return 0;
13}
14arch_initcall(arch_kdebugfs_init);