diff options
Diffstat (limited to 'drivers/virtio/virtio_balloon.c')
-rw-r--r-- | drivers/virtio/virtio_balloon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c index 9c76a061a04d..0fa73b4d18b0 100644 --- a/drivers/virtio/virtio_balloon.c +++ b/drivers/virtio/virtio_balloon.c | |||
@@ -218,13 +218,13 @@ static int virtballoon_probe(struct virtio_device *vdev) | |||
218 | vb->vdev = vdev; | 218 | vb->vdev = vdev; |
219 | 219 | ||
220 | /* We expect two virtqueues. */ | 220 | /* We expect two virtqueues. */ |
221 | vb->inflate_vq = vdev->config->find_vq(vdev, 0, balloon_ack); | 221 | vb->inflate_vq = vdev->config->find_vq(vdev, 0, balloon_ack, "inflate"); |
222 | if (IS_ERR(vb->inflate_vq)) { | 222 | if (IS_ERR(vb->inflate_vq)) { |
223 | err = PTR_ERR(vb->inflate_vq); | 223 | err = PTR_ERR(vb->inflate_vq); |
224 | goto out_free_vb; | 224 | goto out_free_vb; |
225 | } | 225 | } |
226 | 226 | ||
227 | vb->deflate_vq = vdev->config->find_vq(vdev, 1, balloon_ack); | 227 | vb->deflate_vq = vdev->config->find_vq(vdev, 1, balloon_ack, "deflate"); |
228 | if (IS_ERR(vb->deflate_vq)) { | 228 | if (IS_ERR(vb->deflate_vq)) { |
229 | err = PTR_ERR(vb->deflate_vq); | 229 | err = PTR_ERR(vb->deflate_vq); |
230 | goto out_del_inflate_vq; | 230 | goto out_del_inflate_vq; |