diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2012-08-19 04:44:18 -0400 |
---|---|---|
committer | Anton Vorontsov <anton.vorontsov@linaro.org> | 2012-08-22 21:47:40 -0400 |
commit | 588d4f0b05c9bb09c2474460be78f41813b2d861 (patch) | |
tree | 2e828fc001ea02d70e8bc0ed36891b411ead84b4 /drivers/power/wm97xx_battery.c | |
parent | fc2bc0c29a4e32da13ab75101edde030a6362d10 (diff) |
wm97xx_battery: Fix error return code
Initialize return variable before exiting on an error path.
A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
(
if@p1 (\(ret < 0\|ret != 0\))
{ ... return ret; }
|
ret@p1 = 0
)
... when != ret = e1
when != &ret
*if(...)
{
... when != ret = e2
when forall
return ret;
}
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
Diffstat (limited to 'drivers/power/wm97xx_battery.c')
-rw-r--r-- | drivers/power/wm97xx_battery.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/power/wm97xx_battery.c b/drivers/power/wm97xx_battery.c index d2d4c08c681c..0ba331a06dcc 100644 --- a/drivers/power/wm97xx_battery.c +++ b/drivers/power/wm97xx_battery.c | |||
@@ -212,8 +212,10 @@ static int __devinit wm97xx_bat_probe(struct platform_device *dev) | |||
212 | props++; /* POWER_SUPPLY_PROP_VOLTAGE_MIN */ | 212 | props++; /* POWER_SUPPLY_PROP_VOLTAGE_MIN */ |
213 | 213 | ||
214 | prop = kzalloc(props * sizeof(*prop), GFP_KERNEL); | 214 | prop = kzalloc(props * sizeof(*prop), GFP_KERNEL); |
215 | if (!prop) | 215 | if (!prop) { |
216 | ret = -ENOMEM; | ||
216 | goto err3; | 217 | goto err3; |
218 | } | ||
217 | 219 | ||
218 | prop[i++] = POWER_SUPPLY_PROP_PRESENT; | 220 | prop[i++] = POWER_SUPPLY_PROP_PRESENT; |
219 | if (pdata->charge_gpio >= 0) | 221 | if (pdata->charge_gpio >= 0) |