projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8c1700
)
regulator: core: Fix return code for invalid parameters
author
Mark Brown
<broonie@linaro.org>
Fri, 20 Sep 2013 11:32:18 +0000
(12:32 +0100)
committer
Mark Brown
<broonie@linaro.org>
Mon, 23 Sep 2013 11:04:13 +0000
(12:04 +0100)
We should be returning an error, a repeated call will never succeed.
Signed-off-by: Mark Brown <broonie@linaro.org>
drivers/regulator/core.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/regulator/core.c
b/drivers/regulator/core.c
index 66ae12d12c107389a22a28f11d6b6bc3a7e488c4..ad154247bb906d446546f9cba469ef960c2be77f 100644
(file)
--- a/
drivers/regulator/core.c
+++ b/
drivers/regulator/core.c
@@
-1288,7
+1288,7
@@
static struct regulator *_regulator_get(struct device *dev, const char *id,
if (id == NULL) {
pr_err("get() with no identifier\n");
- return
regulator
;
+ return
ERR_PTR(-EINVAL)
;
}
if (dev)