diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2021-06-24 12:38:14 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-07-09 18:20:27 +0200 |
commit | 8245782fd2e097cf499cd58b2c118772f48b0327 (patch) | |
tree | e3bd7b0718fd0fafcd2a1b8ccd16cf30123802b9 /hw/s390x | |
parent | b36ae1c1a235e531e9ccc90bf588749c7bc2d426 (diff) | |
download | qemu-8245782fd2e097cf499cd58b2c118772f48b0327.zip qemu-8245782fd2e097cf499cd58b2c118772f48b0327.tar.gz qemu-8245782fd2e097cf499cd58b2c118772f48b0327.tar.bz2 |
modules: add s390x module annotations
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Jose R. Ziviani <jziviani@suse.de>
Message-Id: <20210624103836.2382472-13-kraxel@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/s390x')
-rw-r--r-- | hw/s390x/virtio-ccw-gpu.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/s390x/virtio-ccw-gpu.c b/hw/s390x/virtio-ccw-gpu.c index 75a9e4b..5868a2a 100644 --- a/hw/s390x/virtio-ccw-gpu.c +++ b/hw/s390x/virtio-ccw-gpu.c @@ -59,6 +59,7 @@ static const TypeInfo virtio_ccw_gpu = { .instance_init = virtio_ccw_gpu_instance_init, .class_init = virtio_ccw_gpu_class_init, }; +module_obj(TYPE_VIRTIO_GPU_CCW); static void virtio_ccw_gpu_register(void) { @@ -68,3 +69,5 @@ static void virtio_ccw_gpu_register(void) } type_init(virtio_ccw_gpu_register) + +module_arch("s390x"); |