diff options
author | Baoyou Xie <baoyou.xie@linaro.org> | 2016-09-01 19:02:57 +0800 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2016-09-09 21:12:35 +0300 |
commit | af7c1beccfd98bad752644dc14ea93805d65b2c9 (patch) | |
tree | beb6738663adfee88c328e1fa38de7da8d3994ae /drivers/virtio/virtio_ring.c | |
parent | 3eab887a55424fc2c27553b7bfe32330df83f7b8 (diff) | |
download | blackbird-op-linux-af7c1beccfd98bad752644dc14ea93805d65b2c9.tar.gz blackbird-op-linux-af7c1beccfd98bad752644dc14ea93805d65b2c9.zip |
virtio: mark vring_dma_dev() static
We get 1 warning when building kernel with W=1:
drivers/virtio/virtio_ring.c:170:16: warning: no previous prototype for 'vring_dma_dev' [-Wmissing-prototypes]
In fact, this function is only used in the file in which it is
declared and don't need a declaration, but can be made static.
so this patch marks this function with 'static'.
Signed-off-by: Baoyou Xie <baoyou.xie@linaro.org>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'drivers/virtio/virtio_ring.c')
-rw-r--r-- | drivers/virtio/virtio_ring.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c index e383ecdaca59..ed9c9eeedfe5 100644 --- a/drivers/virtio/virtio_ring.c +++ b/drivers/virtio/virtio_ring.c @@ -167,7 +167,7 @@ static bool vring_use_dma_api(struct virtio_device *vdev) * making all of the arch DMA ops work on the vring device itself * is a mess. For now, we use the parent device for DMA ops. */ -struct device *vring_dma_dev(const struct vring_virtqueue *vq) +static struct device *vring_dma_dev(const struct vring_virtqueue *vq) { return vq->vq.vdev->dev.parent; } |