aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/mt6315-regulator.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2021-02-15 11:48:13 +0800
committerMark Brown <broonie@kernel.org>2021-03-10 12:22:22 +0000
commitfbc102fb4ccfaebf1f9c178bb78cc76108e954e7 (patch)
treea6b59b36b829cab206e3f3c1cd84222b03005c08 /drivers/regulator/mt6315-regulator.c
parentLinux 5.12-rc2 (diff)
downloadlinux-dev-fbc102fb4ccfaebf1f9c178bb78cc76108e954e7.tar.xz
linux-dev-fbc102fb4ccfaebf1f9c178bb78cc76108e954e7.zip
regulator: mt6315: Return REGULATOR_MODE_INVALID for invalid mode
-EINVAL is not a valid return value for .of_map_mode, return REGULATOR_MODE_INVALID instead. Signed-off-by: Axel Lin <axel.lin@ingics.com> Link: https://lore.kernel.org/r/20210215034813.45510-1-axel.lin@ingics.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/mt6315-regulator.c')
-rw-r--r--drivers/regulator/mt6315-regulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/mt6315-regulator.c b/drivers/regulator/mt6315-regulator.c
index d49a1534d8e9..fc7654624dd6 100644
--- a/drivers/regulator/mt6315-regulator.c
+++ b/drivers/regulator/mt6315-regulator.c
@@ -69,7 +69,7 @@ static unsigned int mt6315_map_mode(u32 mode)
case MT6315_BUCK_MODE_LP:
return REGULATOR_MODE_IDLE;
default:
- return -EINVAL;
+ return REGULATOR_MODE_INVALID;
}
}