aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2021-02-15 11:48:13 +0800
committerMark Brown <broonie@kernel.org>2021-02-22 14:26:28 +0000
commitbe86c3fd26c708da4bef59162efd41ec4f4666c5 (patch)
treeb209ae68a96a3db6b89370b5fbaaad85cc946210
parentregulator: pca9450: Add sd-vsel GPIO (diff)
downloadwireguard-linux-be86c3fd26c708da4bef59162efd41ec4f4666c5.tar.xz
wireguard-linux-be86c3fd26c708da4bef59162efd41ec4f4666c5.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 '')
-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;
}
}