xref: /kernel/linux/linux-6.6/arch/powerpc/kernel/kdebugfs.c (revision 62306a36)
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /kernel/linux/linux-6.6/arch/powerpc/kernel/
162306a36Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0
262306a36Sopenharmony_ci#include <linux/debugfs.h>
362306a36Sopenharmony_ci#include <linux/export.h>
462306a36Sopenharmony_ci#include <linux/init.h>
562306a36Sopenharmony_ci
662306a36Sopenharmony_cistruct dentry *arch_debugfs_dir;
762306a36Sopenharmony_ciEXPORT_SYMBOL(arch_debugfs_dir);
862306a36Sopenharmony_ci
962306a36Sopenharmony_cistatic int __init arch_kdebugfs_init(void)
1062306a36Sopenharmony_ci{
1162306a36Sopenharmony_ci	arch_debugfs_dir = debugfs_create_dir("powerpc", NULL);
1262306a36Sopenharmony_ci	return 0;
1362306a36Sopenharmony_ci}
1462306a36Sopenharmony_ciarch_initcall(arch_kdebugfs_init);
15

Indexes created Thu Nov 07 10:32:03 CST 2024