Release 4.11 drivers/staging/greybus/debugfs.c
/*
* Greybus debugfs code
*
* Copyright 2014 Google Inc.
* Copyright 2014 Linaro Ltd.
*
* Released under the GPLv2 only.
*/
#include <linux/debugfs.h>
#include "greybus.h"
static struct dentry *gb_debug_root;
void __init gb_debugfs_init(void)
{
gb_debug_root = debugfs_create_dir("greybus", NULL);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Greg Kroah-Hartman | 16 | 94.12% | 3 | 75.00% |
Alex Elder | 1 | 5.88% | 1 | 25.00% |
Total | 17 | 100.00% | 4 | 100.00% |
void gb_debugfs_cleanup(void)
{
debugfs_remove_recursive(gb_debug_root);
gb_debug_root = NULL;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Greg Kroah-Hartman | 12 | 75.00% | 2 | 66.67% |
Viresh Kumar | 4 | 25.00% | 1 | 33.33% |
Total | 16 | 100.00% | 3 | 100.00% |
struct dentry *gb_debugfs_get(void)
{
return gb_debug_root;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alexandre Bailon | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL_GPL(gb_debugfs_get);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Greg Kroah-Hartman | 40 | 63.49% | 3 | 42.86% |
Alexandre Bailon | 17 | 26.98% | 1 | 14.29% |
Viresh Kumar | 4 | 6.35% | 1 | 14.29% |
Alex Elder | 2 | 3.17% | 2 | 28.57% |
Total | 63 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.