summaryrefslogtreecommitdiffstats
path: root/drivers/base/regmap
diff options
context:
space:
mode:
authorBartosz Golaszewski <brgl@bgdev.pl>2017-12-21 12:12:50 +0100
committerMark Brown <broonie@kernel.org>2017-12-21 12:27:25 +0000
commita5ba91c380b8bcca21e6166fc71c5e5ac9f0db68 (patch)
treed12f900f6fa51c74c7abe2bb19aaabf3e983df0e /drivers/base/regmap
parent72465736adf2aade263a9475a1d42007fd49e703 (diff)
downloadlinux-a5ba91c380b8bcca21e6166fc71c5e5ac9f0db68.tar.bz2
regmap: debugfs: emit a debug message when locking is disabled
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>
Diffstat (limited to 'drivers/base/regmap')
-rw-r--r--drivers/base/regmap/regmap-debugfs.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/base/regmap/regmap-debugfs.c b/drivers/base/regmap/regmap-debugfs.c
index c8ecefd75d6f..ae962b756863 100644
--- a/drivers/base/regmap/regmap-debugfs.c
+++ b/drivers/base/regmap/regmap-debugfs.c
@@ -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) {