diff options
author | weiping zhang <zhangweiping@didichuxing.com> | 2017-12-21 07:40:58 -0500 |
---|---|---|
committer | Bjorn Andersson <bjorn.andersson@linaro.org> | 2018-01-02 12:32:30 -0500 |
commit | 900a163ededfd1458d622781b2af7ea855497c35 (patch) | |
tree | f8df18866bc60a23a5defdc6ba9be8a51ceef582 | |
parent | 4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323 (diff) |
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: Cornelia Huck <cohuck@redhat.com>
Signed-off-by: weiping zhang <zhangweiping@didichuxing.com>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
-rw-r--r-- | drivers/remoteproc/remoteproc_virtio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/remoteproc/remoteproc_virtio.c b/drivers/remoteproc/remoteproc_virtio.c index 294634836b32..b0633fd4c041 100644 --- a/drivers/remoteproc/remoteproc_virtio.c +++ b/drivers/remoteproc/remoteproc_virtio.c | |||
@@ -327,7 +327,7 @@ int rproc_add_virtio_dev(struct rproc_vdev *rvdev, int id) | |||
327 | 327 | ||
328 | ret = register_virtio_device(vdev); | 328 | ret = register_virtio_device(vdev); |
329 | if (ret) { | 329 | if (ret) { |
330 | put_device(&rproc->dev); | 330 | put_device(&vdev->dev); |
331 | dev_err(dev, "failed to register vdev: %d\n", ret); | 331 | dev_err(dev, "failed to register vdev: %d\n", ret); |
332 | goto out; | 332 | goto out; |
333 | } | 333 | } |