cregit-Linux how code gets into the kernel

Release 4.14 arch/sh/kernel/kdebugfs.c

Directory: arch/sh/kernel
// SPDX-License-Identifier: GPL-2.0
#include <linux/module.h>
#include <linux/init.h>
#include <linux/debugfs.h>


struct dentry *arch_debugfs_dir;

EXPORT_SYMBOL(arch_debugfs_dir);


static int __init arch_kdebugfs_init(void) { arch_debugfs_dir = debugfs_create_dir("sh", NULL); if (!arch_debugfs_dir) return -ENOMEM; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Paul Mundt30100.00%1100.00%
Total30100.00%1100.00%

arch_initcall(arch_kdebugfs_init);

Overall Contributors

PersonTokensPropCommitsCommitProp
Paul Mundt5498.18%150.00%
Greg Kroah-Hartman11.82%150.00%
Total55100.00%2100.00%
Directory: arch/sh/kernel
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.