projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
76bec25
)
regulator: da9062: Return REGULATOR_MODE_INVALID for invalid mode
author
Axel Lin
<axel.lin@ingics.com>
Fri, 22 Nov 2019 04:51:54 +0000
(12:51 +0800)
committer
Mark Brown
<broonie@kernel.org>
Fri, 22 Nov 2019 19:52:42 +0000
(19:52 +0000)
-EINVAL is not a valid return value for .of_map_mode, return
REGULATOR_MODE_INVALID instead.
Fixes: 844e7492ee3d ("regulator: da9062: add of_map_mode support for bucks")
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Link:
https://lore.kernel.org/r/20191122045154.802-1-axel.lin@ingics.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/da9062-regulator.c
patch
|
blob
|
history
diff --git
a/drivers/regulator/da9062-regulator.c
b/drivers/regulator/da9062-regulator.c
index 29f4a60398a35cd3488c07038fe1c9836f4a5738..d3ce0278bfbec3a5a307f63e948c7b3de8987202 100644
(file)
--- a/
drivers/regulator/da9062-regulator.c
+++ b/
drivers/regulator/da9062-regulator.c
@@
-108,7
+108,7
@@
static unsigned int da9062_map_buck_mode(unsigned int mode)
case DA9063_BUCK_MODE_AUTO:
return REGULATOR_MODE_NORMAL;
default:
- return
-EINVAL
;
+ return
REGULATOR_MODE_INVALID
;
}
}