mfd: wm8994: Fix driver operation if loaded as modules
authorMarek Szyprowski <m.szyprowski@samsung.com>
Mon, 27 Apr 2020 07:48:29 +0000 (09:48 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 24 Jun 2020 15:48:27 +0000 (17:48 +0200)
commit7c65dd34eb90498e058126524dee3f7fb193c30d
tree9ab58e9334deb96d3cd66729ab09f0b2696df8a1
parentc4828919f01a73273c983c27786a3cf75788041e
mfd: wm8994: Fix driver operation if loaded as modules

[ Upstream commit d4f9b5428b53dd67f49ee8deed8d4366ed6b1933 ]

WM8994 chip has built-in regulators, which might be used for chip
operation. They are controlled by a separate wm8994-regulator driver,
which should be loaded before this driver calls regulator_get(), because
that driver also provides consumer-supply mapping for the them. If that
driver is not yet loaded, regulator core substitute them with dummy
regulator, what breaks chip operation, because the built-in regulators are
never enabled. Fix this by annotating this driver with MODULE_SOFTDEP()
"pre" dependency to "wm8994_regulator" module.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/mfd/wm8994-core.c