cregit-Linux how code gets into the kernel

Release 4.18 drivers/staging/greybus/debugfs.c

// SPDX-License-Identifier: GPL-2.0
/*
 * Greybus debugfs code
 *
 * Copyright 2014 Google Inc.
 * Copyright 2014 Linaro Ltd.
 */

#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

PersonTokensPropCommitsCommitProp
Greg Kroah-Hartman1694.12%375.00%
Alex Elder15.88%125.00%
Total17100.00%4100.00%


void gb_debugfs_cleanup(void) { debugfs_remove_recursive(gb_debug_root); gb_debug_root = NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Greg Kroah-Hartman1275.00%266.67%
Viresh Kumar425.00%133.33%
Total16100.00%3100.00%


struct dentry *gb_debugfs_get(void) { return gb_debug_root; }

Contributors

PersonTokensPropCommitsCommitProp
Alexandre Bailon12100.00%1100.00%
Total12100.00%1100.00%

EXPORT_SYMBOL_GPL(gb_debugfs_get);

Overall Contributors

PersonTokensPropCommitsCommitProp
Greg Kroah-Hartman4265.62%562.50%
Alexandre Bailon1726.56%112.50%
Viresh Kumar46.25%112.50%
Alex Elder11.56%112.50%
Total64100.00%8100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.