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

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

Merge "ion: msm: Remove dentry_path() usage on heap debugfs file creation errors"

parents c1640b59 ca80ea73
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -121,7 +121,7 @@ static const struct file_operations msm_ion_debug_heap_fops = {

static void msm_ion_debugfs_create_file(struct msm_ion_heap *msm_heap)
{
	char debug_name[64], buf[256];
	char debug_name[64];
	struct dentry *debugfs_root;
	struct ion_heap *heap;

@@ -132,8 +132,9 @@ static void msm_ion_debugfs_create_file(struct msm_ion_heap *msm_heap)
		scnprintf(debug_name, 64, "%s_stats", heap->name);
		if (!debugfs_create_file(debug_name, 0664, debugfs_root,
					 msm_heap, &msm_ion_debug_heap_fops))
			pr_err("Failed to create heap debugfs at %s/%s\n",
			       dentry_path(debugfs_root, buf, 256), debug_name);
			dev_err(msm_heap->dev,
				"Failed to create %s debugfs entry\n",
				debug_name);
	}
}