Skip to content

Commit

Permalink
regmap: debugfs: emit a debug message when locking is disabled
Browse files Browse the repository at this point in the history
We currently silently omit creating the debugfs entries when regmap
locking is disabled. Users may not be aware of the reason for which
regmap files don't show up in debugfs. Add a dev_dbg() message
explaining that.

Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Bartosz Golaszewski authored and Mark Brown committed Dec 21, 2017
1 parent 7246573 commit a5ba91c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/base/regmap/regmap-debugfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -529,8 +529,10 @@ void regmap_debugfs_init(struct regmap *map, const char *name)
struct regmap_range_node *range_node;
const char *devname = "dummy";

if (map->debugfs_disable)
if (map->debugfs_disable) {
dev_dbg(map->dev, "regmap locking disabled - not creating debugfs entries\n");
return;
}

/* If we don't have the debugfs root yet, postpone init */
if (!regmap_debugfs_root) {
Expand Down

0 comments on commit a5ba91c

Please sign in to comment.