diff options
author | Emilio G. Cota <cota@braap.org> | 2013-02-13 13:47:54 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-02-14 12:24:14 -0500 |
commit | def1820d25fa93cf5fca10bf45f22cdb11be41f2 (patch) | |
tree | e4e6dcea68b002815b34a1c17b55df59937fd60f /drivers/vme/vme.c | |
parent | 40262275f0b1bd2f0cbf9453c89c8a16025932ef (diff) |
vme: add missing put_device() after device_register() fails
put_device() must be called after device_register() fails,
since device_register() always initializes the refcount
on the device structure.
Signed-off-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/vme/vme.c')
-rw-r--r-- | drivers/vme/vme.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/vme/vme.c b/drivers/vme/vme.c index 95a9f71d793e..5e6c7d74e19f 100644 --- a/drivers/vme/vme.c +++ b/drivers/vme/vme.c | |||
@@ -1376,6 +1376,7 @@ static int __vme_register_driver_bus(struct vme_driver *drv, | |||
1376 | return 0; | 1376 | return 0; |
1377 | 1377 | ||
1378 | err_reg: | 1378 | err_reg: |
1379 | put_device(&vdev->dev); | ||
1379 | kfree(vdev); | 1380 | kfree(vdev); |
1380 | err_devalloc: | 1381 | err_devalloc: |
1381 | list_for_each_entry_safe(vdev, tmp, &drv->devices, drv_list) { | 1382 | list_for_each_entry_safe(vdev, tmp, &drv->devices, drv_list) { |