2017-11-07 13:58:41 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2014-08-31 20:54:59 +00:00
|
|
|
/*
|
|
|
|
* Greybus debugfs code
|
|
|
|
*
|
|
|
|
* Copyright 2014 Google Inc.
|
2014-12-12 18:08:42 +00:00
|
|
|
* Copyright 2014 Linaro Ltd.
|
2014-08-31 20:54:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/debugfs.h>
|
2019-08-25 05:54:27 +00:00
|
|
|
#include <linux/greybus.h>
|
2014-08-31 20:54:59 +00:00
|
|
|
|
|
|
|
static struct dentry *gb_debug_root;
|
|
|
|
|
2015-06-09 22:42:50 +00:00
|
|
|
void __init gb_debugfs_init(void)
|
2014-08-31 20:54:59 +00:00
|
|
|
{
|
|
|
|
gb_debug_root = debugfs_create_dir("greybus", NULL);
|
|
|
|
}
|
|
|
|
|
2014-08-31 23:17:04 +00:00
|
|
|
void gb_debugfs_cleanup(void)
|
2014-08-31 20:54:59 +00:00
|
|
|
{
|
|
|
|
debugfs_remove_recursive(gb_debug_root);
|
2014-11-14 11:55:01 +00:00
|
|
|
gb_debug_root = NULL;
|
2014-08-31 20:54:59 +00:00
|
|
|
}
|
2015-03-18 14:42:51 +00:00
|
|
|
|
|
|
|
struct dentry *gb_debugfs_get(void)
|
|
|
|
{
|
|
|
|
return gb_debug_root;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(gb_debugfs_get);
|