diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 13:44:16 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:15:30 +0100 |
commit | 5a4c031616f4f41edebe608732a7f784c4cff484 (patch) | |
tree | 7feeffbf366196e825b27cd5f64d9128d25c4c14 | |
parent | b7c7941b04bbc65425bcad710fa29fb88bd5ab9f (diff) | |
download | qemu-5a4c031616f4f41edebe608732a7f784c4cff484.zip qemu-5a4c031616f4f41edebe608732a7f784c4cff484.tar.gz qemu-5a4c031616f4f41edebe608732a7f784c4cff484.tar.bz2 |
qmp-commands: move 'query-tpm-types' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
-rw-r--r-- | docs/qmp-commands.txt | 12 | ||||
-rw-r--r-- | qapi-schema.json | 6 |
2 files changed, 6 insertions, 12 deletions
diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt index f3ec744..c613ab4 100644 --- a/docs/qmp-commands.txt +++ b/docs/qmp-commands.txt @@ -1228,18 +1228,6 @@ Example: ] } -query-tpm-types ---------------- - -Return a list of supported TPM types. - -Arguments: None - -Example: - --> { "execute": "query-tpm-types" } -<- { "return": [ "passthrough" ] } - query-rx-filter --------------- diff --git a/qapi-schema.json b/qapi-schema.json index 1c9573b..68a8418 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -4929,6 +4929,12 @@ # Returns: a list of TpmType # # Since: 1.5 +# +# Example: +# +# -> { "execute": "query-tpm-types" } +# <- { "return": [ "passthrough" ] } +# ## { 'command': 'query-tpm-types', 'returns': ['TpmType'] } |