summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorLevente Kurusa <levex@linux.com>2014-07-23 09:13:14 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2014-07-29 20:26:11 +1000
commit2c37aafa06699cfbd6fc4e89a8ffe854e39f8687 (patch)
treed3575e370cc770ad59fe3b3fce7336ec70fa2bc8 /drivers
parent112304a4d28b2fba5b2b42bda066bfa1ab7866b4 (diff)
drivers/w1/w1_int.c: call put_device if device_register fails
Currently, memsetting and kfreeing the device is bad behaviour. The device will have a reference count of 1 and hence can cause trouble because it has kfree'd. Proper way to handle a failed device_register is to call put_device right after it fails. Signed-off-by: Levente Kurusa <levex@linux.com> Acked-by: Evgeniy Polyakov <zbr@ioremap.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/w1/w1_int.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/w1/w1_int.c b/drivers/w1/w1_int.c
index 47249a30eae3..20f766afa4c7 100644
--- a/drivers/w1/w1_int.c
+++ b/drivers/w1/w1_int.c
@@ -91,8 +91,7 @@ static struct w1_master *w1_alloc_dev(u32 id, int slave_count, int slave_ttl,
err = device_register(&dev->dev);
if (err) {
pr_err("Failed to register master device. err=%d\n", err);
- memset(dev, 0, sizeof(struct w1_master));
- kfree(dev);
+ put_device(&dev->dev);
dev = NULL;
}