Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 295994
b: refs/heads/master
c: dd6da1c
h: refs/heads/master
v: v3
  • Loading branch information
Ohad Ben-Cohen committed Feb 22, 2012
1 parent 44fcdfb commit 9d12828
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b719587eb46c588fabc71de97c28bafcf827acf7
refs/heads/master: dd6da1c5e99a3b736b52370c504a2b8843cbfda6
6 changes: 5 additions & 1 deletion trunk/drivers/remoteproc/remoteproc_rpmsg.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,11 @@ static struct virtqueue *rp_find_vq(struct virtio_device *vdev,

dev_dbg(rproc->dev, "vring%d: va %p qsz %d\n", id, addr, len);

vq = vring_new_virtqueue(len, AMP_VRING_ALIGN, vdev, addr,
/*
* Create the new vq, and tell virtio we're not interested in
* the 'weak' smp barriers, since we're talking with a real device.
*/
vq = vring_new_virtqueue(len, AMP_VRING_ALIGN, vdev, false, addr,
rproc_virtio_notify, callback, name);
if (!vq) {
dev_err(rproc->dev, "vring_new_virtqueue %s failed\n", name);
Expand Down

0 comments on commit 9d12828

Please sign in to comment.