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