Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 900a163e authored by weiping zhang's avatar weiping zhang Committed by Bjorn Andersson
Browse files

virtio_remoteproc: correct put_device virtio_device.dev



rproc_virtio_dev_release will be called iff virtio_device.dev's
reference count drops to 0. Here we just put vdev.dev, and then
rproc->dev's cleanup will be done in rproc_virtio_dev_release.

Reviewed-by: default avatarCornelia Huck <cohuck@redhat.com>
Signed-off-by: default avatarweiping zhang <zhangweiping@didichuxing.com>
Signed-off-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
parent 4fbd8d19
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -327,7 +327,7 @@ int rproc_add_virtio_dev(struct rproc_vdev *rvdev, int id)

	ret = register_virtio_device(vdev);
	if (ret) {
		put_device(&rproc->dev);
		put_device(&vdev->dev);
		dev_err(dev, "failed to register vdev: %d\n", ret);
		goto out;
	}