diff options
author | Markus Armbruster <armbru@redhat.com> | 2015-03-05 17:24:48 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2015-06-02 09:59:13 +0200 |
commit | 318660f84a0a26451750aee68ab7dcf88731637d (patch) | |
tree | 2ff29b0f2b111e5d077febf43a13d82d7f59040e /hmp-commands.hx | |
parent | 072ebe6b0351060b33287454fdef625fe79c858f (diff) | |
download | qemu-318660f84a0a26451750aee68ab7dcf88731637d.zip qemu-318660f84a0a26451750aee68ab7dcf88731637d.tar.gz qemu-318660f84a0a26451750aee68ab7dcf88731637d.tar.bz2 |
monitor: Use traditional command interface for HMP device_add
All QMP commands use the "new" handler interface (mhandler.cmd_new).
Most HMP commands still use the traditional interface (mhandler.cmd),
but a few use the "new" one. Complicates handle_user_command() for no
gain, so I'm converting these to the traditional interface.
For device_add, that's easy: just wrap the obvious hmp_device_add()
around do_device_add().
monitor_user_noop() is now unused, drop it.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'hmp-commands.hx')
-rw-r--r-- | hmp-commands.hx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hmp-commands.hx b/hmp-commands.hx index 5257969..eff2f97 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -653,8 +653,7 @@ ETEXI .args_type = "device:O", .params = "driver[,prop=value][,...]", .help = "add device, like -device on the command line", - .user_print = monitor_user_noop, - .mhandler.cmd_new = do_device_add, + .mhandler.cmd = hmp_device_add, .command_completion = device_add_completion, }, |