diff options
author | Markus Armbruster | 2021-10-28 12:25:14 +0200 |
---|---|---|
committer | Markus Armbruster | 2021-10-29 15:55:52 +0200 |
commit | 9bafe07bc8b00ce9ba5ea6f4c590239c579d83ee (patch) | |
tree | bce6a20f01fe729aa9a44d3950e731fb99477862 /scripts/qapi | |
parent | qapi: Mark unstable QMP parts with feature 'unstable' (diff) | |
download | qemu-9bafe07bc8b00ce9ba5ea6f4c590239c579d83ee.tar.gz qemu-9bafe07bc8b00ce9ba5ea6f4c590239c579d83ee.tar.xz qemu-9bafe07bc8b00ce9ba5ea6f4c590239c579d83ee.zip |
qapi: Eliminate QCO_NO_OPTIONS for a slight simplification
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Message-Id: <20211028102520.747396-4-armbru@redhat.com>
Diffstat (limited to 'scripts/qapi')
-rw-r--r-- | scripts/qapi/commands.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/scripts/qapi/commands.py b/scripts/qapi/commands.py index 3654825968..c8a975528f 100644 --- a/scripts/qapi/commands.py +++ b/scripts/qapi/commands.py @@ -229,15 +229,12 @@ def gen_register_command(name: str, if coroutine: options += ['QCO_COROUTINE'] - if not options: - options = ['QCO_NO_OPTIONS'] - ret = mcgen(''' qmp_register_command(cmds, "%(name)s", qmp_marshal_%(c_name)s, %(opts)s); ''', name=name, c_name=c_name(name), - opts=" | ".join(options)) + opts=' | '.join(options) or 0) return ret |