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>
This commit is contained in:
Родитель
40262275f0
Коммит
def1820d25
|
@ -1376,6 +1376,7 @@ static int __vme_register_driver_bus(struct vme_driver *drv,
|
|||
return 0;
|
||||
|
||||
err_reg:
|
||||
put_device(&vdev->dev);
|
||||
kfree(vdev);
|
||||
err_devalloc:
|
||||
list_for_each_entry_safe(vdev, tmp, &drv->devices, drv_list) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче