]> Git Repo - qemu.git/blob - backends/confidential-guest-support.c
works with less than base ISA qemu-system-riscv32 -M virt -bios none -kernel output...
[qemu.git] / backends / confidential-guest-support.c
1 /*
2  * QEMU Confidential Guest support
3  *
4  * Copyright Red Hat.
5  *
6  * Authors:
7  *  David Gibson <[email protected]>
8  *
9  * This work is licensed under the terms of the GNU GPL, version 2 or
10  * later.  See the COPYING file in the top-level directory.
11  *
12  */
13
14 #include "qemu/osdep.h"
15
16 #include "exec/confidential-guest-support.h"
17
18 OBJECT_DEFINE_ABSTRACT_TYPE(ConfidentialGuestSupport,
19                             confidential_guest_support,
20                             CONFIDENTIAL_GUEST_SUPPORT,
21                             OBJECT)
22
23 static void confidential_guest_support_class_init(ObjectClass *oc, void *data)
24 {
25 }
26
27 static void confidential_guest_support_init(Object *obj)
28 {
29 }
30
31 static void confidential_guest_support_finalize(Object *obj)
32 {
33 }
This page took 0.025051 seconds and 4 git commands to generate.