]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
remoteproc: avoid registering a virtio device if not supported
authorMark Grosen <mgrosen@ti.com>
Tue, 13 Dec 2011 07:14:15 +0000 (09:14 +0200)
committerOhad Ben-Cohen <ohad@wizery.com>
Wed, 8 Feb 2012 20:54:17 +0000 (22:54 +0200)
Let remoteproc know when the firmware doesn't support any virtio
functionality, so registering a virtio device can be avoided.

This is needed for remote processors that doesn't require any
virtio-based communications, but are still controlled via remoteproc.

[ohad@wizery.com: write commit log]

Signed-off-by: Mark Grosen <mgrosen@ti.com>
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
drivers/remoteproc/remoteproc_core.c

index 0d9a9552c311589d61713893968b3e5e06ddfc56..080c0569ef383fa0ca38269cdc941521402b501c 100644 (file)
@@ -695,7 +695,7 @@ static int
 rproc_handle_virtio_rsc(struct rproc *rproc, struct fw_resource *rsc, int len)
 {
        struct device *dev = rproc->dev;
-       int ret = 0;
+       int ret = -ENODEV;
 
        for (; len >= sizeof(*rsc); rsc++, len -= sizeof(*rsc))
                if (rsc->type == RSC_VIRTIO_DEV) {