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

Unverified Commit 9b947a13 authored by David Lechner's avatar David Lechner Committed by Mark Brown
Browse files

regmap: use debugfs even when no device



This registers regmaps with debugfs even when they do not have an
associated device. For example, this is common for syscon regmaps.

Signed-off-by: default avatarDavid Lechner <david@lechnology.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 12ae3808
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1116,6 +1116,8 @@ struct regmap *__regmap_init(struct device *dev,
		ret = regmap_attach_dev(dev, map, config);
		if (ret != 0)
			goto err_regcache;
	} else {
		regmap_debugfs_init(map, config->name);
	}

	return map;