diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-03-07 09:02:44 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-03-11 08:04:12 +0100 |
commit | 0be00346d1e3d96b839832809d7042db8c7d4300 (patch) | |
tree | 89c923564fb0fa4f6e0efd791e561efaaaf90751 /hw/display | |
parent | 3912e66a3febdea3b89150f923ca9be3f02f7ae3 (diff) |
virtio-gpu: make virtio_gpu_reset static
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-id: 20190307080244.9011-4-kraxel@redhat.com
Diffstat (limited to 'hw/display')
-rw-r--r-- | hw/display/virtio-gpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/display/virtio-gpu.c b/hw/display/virtio-gpu.c index a3627f58a9..4dbf48e424 100644 --- a/hw/display/virtio-gpu.c +++ b/hw/display/virtio-gpu.c @@ -1346,7 +1346,7 @@ static void virtio_gpu_instance_init(Object *obj) { } -void virtio_gpu_reset(VirtIODevice *vdev) +static void virtio_gpu_reset(VirtIODevice *vdev) { VirtIOGPU *g = VIRTIO_GPU(vdev); struct virtio_gpu_simple_resource *res, *tmp; |