diff options
author | Jose R. Ziviani <jziviani@suse.de> | 2022-05-28 00:20:23 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2022-06-06 09:26:53 +0200 |
commit | 24ce7aa77dd1a3095d994bf53d60cce6e672cf4d (patch) | |
tree | 6637096305922de96e8c0a284bd601a0fd80f38f /hw/s390x | |
parent | b0f3184e82817b700ea81bc76ebc8d999de35278 (diff) | |
download | qemu-24ce7aa77dd1a3095d994bf53d60cce6e672cf4d.zip qemu-24ce7aa77dd1a3095d994bf53d60cce6e672cf4d.tar.gz qemu-24ce7aa77dd1a3095d994bf53d60cce6e672cf4d.tar.bz2 |
modules: introduces module_kconfig directive
module_kconfig is a new directive that should be used with module_obj
whenever that module depends on the Kconfig to be enabled.
When the module is enabled in Kconfig we are sure that its dependencies
will be enabled as well, thus the module will be loaded without any
problem.
The correct way to use module_kconfig is by passing the Kconfig option
to module_kconfig (or the *config-devices.mak without CONFIG_).
Signed-off-by: Jose R. Ziviani <jziviani@suse.de>
Signed-off-by: Dario Faggioli <dfaggioli@suse.com>
Message-Id: <165369002370.5857.12150544416563557322.stgit@work>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/s390x')
-rw-r--r-- | hw/s390x/virtio-ccw-gpu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/s390x/virtio-ccw-gpu.c b/hw/s390x/virtio-ccw-gpu.c index 8d995fc..0642c52 100644 --- a/hw/s390x/virtio-ccw-gpu.c +++ b/hw/s390x/virtio-ccw-gpu.c @@ -69,6 +69,7 @@ static const TypeInfo virtio_ccw_gpu = { .class_init = virtio_ccw_gpu_class_init, }; module_obj(TYPE_VIRTIO_GPU_CCW); +module_kconfig(VIRTIO_CCW); static void virtio_ccw_gpu_register(void) { |