aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/core.c
diff options
context:
space:
mode:
authorDmitry Osipenko <digetx@gmail.com>2018-11-20 04:20:19 +0300
committerMark Brown <broonie@kernel.org>2018-11-20 15:03:22 +0000
commit14a742724fc0f089893c6f70a62d30ab418ed7ff (patch)
tree5dafa78cd9eca6586e0a2e0cdeb8cf3014627d59 /drivers/regulator/core.c
parentregulator: core: Keep regulators-list locked while traversing the list (diff)
downloadlinux-dev-14a742724fc0f089893c6f70a62d30ab418ed7ff.tar.xz
linux-dev-14a742724fc0f089893c6f70a62d30ab418ed7ff.zip
regulator: core: Export regulator_lock and regulator_unlock
This fixes compiling regulator drivers that use these function when these drivers are built as kernel modules. Fixes: f8702f9e4aa7 ("regulator: core: Use ww_mutex for regulators locking") Signed-off-by: Dmitry Osipenko <digetx@gmail.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/core.c')
-rw-r--r--drivers/regulator/core.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index fd237bc0fa7c..f937a33e5f02 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -211,6 +211,7 @@ void regulator_lock(struct regulator_dev *rdev)
{
regulator_lock_nested(rdev, NULL);
}
+EXPORT_SYMBOL_GPL(regulator_lock);
/**
* regulator_unlock - unlock a single regulator
@@ -232,6 +233,7 @@ void regulator_unlock(struct regulator_dev *rdev)
mutex_unlock(&regulator_nesting_mutex);
}
+EXPORT_SYMBOL_GPL(regulator_unlock);
static bool regulator_supply_is_couple(struct regulator_dev *rdev)
{