[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 09/24] modules: add ccid module annotations
From: |
Gerd Hoffmann |
Subject: |
[PATCH v3 09/24] modules: add ccid module annotations |
Date: |
Fri, 18 Jun 2021 06:53:38 +0200 |
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
hw/usb/ccid-card-emulated.c | 1 +
hw/usb/ccid-card-passthru.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/hw/usb/ccid-card-emulated.c b/hw/usb/ccid-card-emulated.c
index 5c76bed77aa0..6c8c0355e099 100644
--- a/hw/usb/ccid-card-emulated.c
+++ b/hw/usb/ccid-card-emulated.c
@@ -612,6 +612,7 @@ static const TypeInfo emulated_card_info = {
.instance_size = sizeof(EmulatedState),
.class_init = emulated_class_initfn,
};
+module_obj(TYPE_EMULATED_CCID);
static void ccid_card_emulated_register_types(void)
{
diff --git a/hw/usb/ccid-card-passthru.c b/hw/usb/ccid-card-passthru.c
index 7212d0d7fb5e..fa3040fb7154 100644
--- a/hw/usb/ccid-card-passthru.c
+++ b/hw/usb/ccid-card-passthru.c
@@ -414,6 +414,7 @@ static const TypeInfo passthru_card_info = {
.instance_size = sizeof(PassthruState),
.class_init = passthru_class_initfn,
};
+module_obj(TYPE_CCID_PASSTHRU);
static void ccid_card_passthru_register_types(void)
{
--
2.31.1
- [PATCH v3 01/24] modules: add modinfo macros, (continued)
- [PATCH v3 01/24] modules: add modinfo macros, Gerd Hoffmann, 2021/06/18
- [PATCH v3 04/24] modules: add qxl module annotations, Gerd Hoffmann, 2021/06/18
- [PATCH v3 03/24] modules: generate modinfo.c, Gerd Hoffmann, 2021/06/18
- [PATCH v3 05/24] modules: add virtio-gpu module annotations, Gerd Hoffmann, 2021/06/18
- [PATCH v3 06/24] modules: add chardev module annotations, Gerd Hoffmann, 2021/06/18
- [PATCH v3 07/24] modules: add audio module annotations, Gerd Hoffmann, 2021/06/18
- [PATCH v3 08/24] modules: add usb-redir module annotations, Gerd Hoffmann, 2021/06/18
- [PATCH v3 09/24] modules: add ccid module annotations,
Gerd Hoffmann <=
- [PATCH v3 11/24] modules: add s390x module annotations, Gerd Hoffmann, 2021/06/18
- [PATCH v3 10/24] modules: add ui module annotations, Gerd Hoffmann, 2021/06/18
- [PATCH v3 14/24] modules: use modinfo for qom load, Gerd Hoffmann, 2021/06/18
- [PATCH v3 13/24] modules: use modinfo for dependencies, Gerd Hoffmann, 2021/06/18
- [PATCH v3 12/24] modules: add block module annotations, Gerd Hoffmann, 2021/06/18
- [PATCH v3 15/24] modules: use modinfo for qemu opts load, Gerd Hoffmann, 2021/06/18
- [PATCH v3 16/24] modules: add tracepoints, Gerd Hoffmann, 2021/06/18