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-Url: http://git.maquefel.me/?a=commitdiff_plain;h=fbc102fb4ccfaebf1f9c178bb78cc76108e954e7;p=linux.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 d49a1534d8e91..fc7654624dd68 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; } }