cregit-Linux how code gets into the kernel

Release 4.11 arch/sh/kernel/kdebugfs.c

Directory: arch/sh/kernel
#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 Mundt54100.00%1100.00%
Total54100.00%1100.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.