diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2021-10-07 19:56:11 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-10-13 10:47:49 +0200 |
commit | 021658566b71e138db46434849f0556bab3fc30b (patch) | |
tree | 3c9c85e5ef8d24f3395971d21a5d692d4375a695 /hw/i386/sgx-stub.c | |
parent | 05fc8db720a2effad2fe523ab45c1ce5f8f32379 (diff) | |
download | qemu-021658566b71e138db46434849f0556bab3fc30b.zip qemu-021658566b71e138db46434849f0556bab3fc30b.tar.gz qemu-021658566b71e138db46434849f0556bab3fc30b.tar.bz2 |
hw/i386/sgx: Move qmp_query_sgx_capabilities() to hw/i386/sgx.c
Move qmp_query_sgx_capabilities() from target/i386/monitor.c to
hw/i386/sgx.c, removing the sgx_get_capabilities() indirection.
Suggested-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20211007175612.496366-4-philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/i386/sgx-stub.c')
-rw-r--r-- | hw/i386/sgx-stub.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hw/i386/sgx-stub.c b/hw/i386/sgx-stub.c index 45c4731..3749656 100644 --- a/hw/i386/sgx-stub.c +++ b/hw/i386/sgx-stub.c @@ -2,6 +2,8 @@ #include "hw/i386/pc.h" #include "hw/i386/sgx-epc.h" #include "hw/i386/sgx.h" +#include "qapi/error.h" +#include "qapi/qapi-commands-misc-target.h" SGXInfo *sgx_get_info(Error **errp) { @@ -9,7 +11,7 @@ SGXInfo *sgx_get_info(Error **errp) return NULL; } -SGXInfo *sgx_get_capabilities(Error **errp) +SGXInfo *qmp_query_sgx_capabilities(Error **errp) { error_setg(errp, "SGX support is not compiled in"); return NULL; |