From: Axel Lin Date: Mon, 15 Feb 2021 03:48:13 +0000 (+0800) Subject: regulator: mt6315: Return REGULATOR_MODE_INVALID for invalid mode X-Git-Tag: v5.12-rc3~28^2~6 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=fbc102fb4ccfaebf1f9c178bb78cc76108e954e7;p=linux-2.6-block.git 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 Link: https://lore.kernel.org/r/20210215034813.45510-1-axel.lin@ingics.com Signed-off-by: Mark Brown --- 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; } }