diff options
Diffstat (limited to 'drivers/remoteproc/remoteproc_virtio.c')
| -rw-r--r-- | drivers/remoteproc/remoteproc_virtio.c | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/remoteproc/remoteproc_virtio.c b/drivers/remoteproc/remoteproc_virtio.c index 343c1941c12..e7a4780e93d 100644 --- a/drivers/remoteproc/remoteproc_virtio.c +++ b/drivers/remoteproc/remoteproc_virtio.c @@ -84,6 +84,9 @@ static struct virtqueue *rp_find_vq(struct virtio_device *vdev,  	if (id >= ARRAY_SIZE(rvdev->vring))  		return ERR_PTR(-EINVAL); +	if (!name) +		return NULL; +  	ret = rproc_alloc_vring(rvdev, id);  	if (ret)  		return ERR_PTR(ret);  |