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:
f722406
)
hwmon: (iio_hwmon) Fix missing iio_channel_release_all call if devm_kzalloc fail
author
Axel Lin
<axel.lin@ingics.com>
Tue, 23 Apr 2013 17:06:43 +0000
(17:06 +0000)
committer
Guenter Roeck
<linux@roeck-us.net>
Sun, 12 May 2013 05:55:07 +0000
(22:55 -0700)
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/iio_hwmon.c
patch
|
blob
|
history
diff --git
a/drivers/hwmon/iio_hwmon.c
b/drivers/hwmon/iio_hwmon.c
index aafa4531b9614e4b068c9b91698927272c7dc588..368497fa2627477d50246219f960980fdb058126 100644
(file)
--- a/
drivers/hwmon/iio_hwmon.c
+++ b/
drivers/hwmon/iio_hwmon.c
@@
-84,8
+84,10
@@
static int iio_hwmon_probe(struct platform_device *pdev)
return PTR_ERR(channels);
st = devm_kzalloc(dev, sizeof(*st), GFP_KERNEL);
- if (st == NULL)
- return -ENOMEM;
+ if (st == NULL) {
+ ret = -ENOMEM;
+ goto error_release_channels;
+ }
st->channels = channels;