Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit df997bf3 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "cnss2: Ignore debugfs non availability during init"

parents 766387ed 659efe65
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -753,6 +753,7 @@ static const struct file_operations cnss_dynamic_feature_fops = {
	.llseek = seq_lseek,
};

#ifdef CONFIG_DEBUG_FS
#ifdef CONFIG_CNSS2_DEBUG
static int cnss_create_debug_only_node(struct cnss_plat_data *plat_priv)
{
@@ -809,6 +810,17 @@ void cnss_debugfs_destroy(struct cnss_plat_data *plat_priv)
{
	debugfs_remove_recursive(plat_priv->root_dentry);
}
#else
int cnss_debugfs_create(struct cnss_plat_data *plat_priv)
{
	plat_priv->root_dentry = NULL;
	return 0;
}

void cnss_debugfs_destroy(struct cnss_plat_data *plat_priv)
{
}
#endif

int cnss_debug_init(void)
{