diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2013-04-30 18:28:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-30 20:04:08 -0400 |
commit | 0ece1bbf4c280a4e886709ebf21d7df35a638a82 (patch) | |
tree | aaa64b49aeeeeab5b3ef978ae8b43da47b36f8aa /drivers/w1 | |
parent | 8d46fa11790e012d991495148f2d16cdbf4ee864 (diff) |
drivers/w1/slaves/w1_bq27000.c: fix the error handling in w1_bq27000_add_slave()
Use platform_device_put() instead of platform_device_unregister() if
platform_device_add() fails, and also add the return value check of
platform_device_add_data().
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Cc: Evgeniy Polyakov <zbr@ioremap.net>
Cc: Greg KH <greg@kroah.com>
Cc: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/w1')
-rw-r--r-- | drivers/w1/slaves/w1_bq27000.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/w1/slaves/w1_bq27000.c b/drivers/w1/slaves/w1_bq27000.c index 773dca5beafe..afbefed5f2c9 100644 --- a/drivers/w1/slaves/w1_bq27000.c +++ b/drivers/w1/slaves/w1_bq27000.c | |||
@@ -57,6 +57,8 @@ static int w1_bq27000_add_slave(struct w1_slave *sl) | |||
57 | ret = platform_device_add_data(pdev, | 57 | ret = platform_device_add_data(pdev, |
58 | &bq27000_battery_info, | 58 | &bq27000_battery_info, |
59 | sizeof(bq27000_battery_info)); | 59 | sizeof(bq27000_battery_info)); |
60 | if (ret) | ||
61 | goto pdev_add_failed; | ||
60 | pdev->dev.parent = &sl->dev; | 62 | pdev->dev.parent = &sl->dev; |
61 | 63 | ||
62 | ret = platform_device_add(pdev); | 64 | ret = platform_device_add(pdev); |
@@ -68,7 +70,7 @@ static int w1_bq27000_add_slave(struct w1_slave *sl) | |||
68 | goto success; | 70 | goto success; |
69 | 71 | ||
70 | pdev_add_failed: | 72 | pdev_add_failed: |
71 | platform_device_unregister(pdev); | 73 | platform_device_put(pdev); |
72 | success: | 74 | success: |
73 | return ret; | 75 | return ret; |
74 | } | 76 | } |