xref: /linux/arch/sh/kernel/kdebugfs.c (revision 0898782247ae533d1f4e47a06bc5d4870931b284)
1*b2441318SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0
23f224f4eSPaul Mundt #include <linux/module.h>
33f224f4eSPaul Mundt #include <linux/init.h>
43f224f4eSPaul Mundt #include <linux/debugfs.h>
53f224f4eSPaul Mundt 
63f224f4eSPaul Mundt struct dentry *arch_debugfs_dir;
73f224f4eSPaul Mundt EXPORT_SYMBOL(arch_debugfs_dir);
83f224f4eSPaul Mundt 
arch_kdebugfs_init(void)93f224f4eSPaul Mundt static int __init arch_kdebugfs_init(void)
103f224f4eSPaul Mundt {
113f224f4eSPaul Mundt 	arch_debugfs_dir = debugfs_create_dir("sh", NULL);
123f224f4eSPaul Mundt 	return 0;
133f224f4eSPaul Mundt }
143f224f4eSPaul Mundt arch_initcall(arch_kdebugfs_init);
15