diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2013-05-19 22:45:44 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2013-05-19 22:46:01 -0400 |
commit | b3087e48ce20be784fae1dbabc2e42e2ad0f21bc (patch) | |
tree | 06c57b68ed84803a4ac46892671fe4e398a81708 /include/linux/virtio.h | |
parent | 6865b32a865c76bfa02be383b52041b942cb232b (diff) |
virtio: remove virtqueue_add_buf().
All users changed to virtqueue_add_sg() or virtqueue_add_outbuf/inbuf.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'include/linux/virtio.h')
-rw-r--r-- | include/linux/virtio.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/linux/virtio.h b/include/linux/virtio.h index 9ff8645b7e0b..e94c75ded111 100644 --- a/include/linux/virtio.h +++ b/include/linux/virtio.h | |||
@@ -34,13 +34,6 @@ struct virtqueue { | |||
34 | void *priv; | 34 | void *priv; |
35 | }; | 35 | }; |
36 | 36 | ||
37 | int virtqueue_add_buf(struct virtqueue *vq, | ||
38 | struct scatterlist sg[], | ||
39 | unsigned int out_num, | ||
40 | unsigned int in_num, | ||
41 | void *data, | ||
42 | gfp_t gfp); | ||
43 | |||
44 | int virtqueue_add_outbuf(struct virtqueue *vq, | 37 | int virtqueue_add_outbuf(struct virtqueue *vq, |
45 | struct scatterlist sg[], unsigned int num, | 38 | struct scatterlist sg[], unsigned int num, |
46 | void *data, | 39 | void *data, |