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 /monitor | |
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 'monitor')
-rw-r--r-- | monitor/misc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/monitor/misc.c b/monitor/misc.c index ffe7966870..3556b177f6 100644 --- a/monitor/misc.c +++ b/monitor/misc.c @@ -230,8 +230,7 @@ static void monitor_init_qmp_commands(void) qmp_init_marshal(&qmp_commands); - qmp_register_command(&qmp_commands, "device_add", qmp_device_add, - QCO_NO_OPTIONS); + qmp_register_command(&qmp_commands, "device_add", qmp_device_add, 0); QTAILQ_INIT(&qmp_cap_negotiation_commands); qmp_register_command(&qmp_cap_negotiation_commands, "qmp_capabilities", |