diff options
author | Peter Maydell | 2015-02-25 14:14:37 +0100 |
---|---|---|
committer | Peter Maydell | 2015-02-25 14:14:37 +0100 |
commit | 68b459eaa660be17d3547aa581502fe2c572c84f (patch) | |
tree | e5b3edf44f205dea663ab6d082bfee78fc322d14 /device-hotplug.c | |
parent | Merge remote-tracking branch 'remotes/kraxel/tags/pull-usb-20150218-1' into s... (diff) | |
parent | hmp: Name HMP info handler functions hmp_info_SUBCOMMAND() (diff) | |
download | qemu-68b459eaa660be17d3547aa581502fe2c572c84f.tar.gz qemu-68b459eaa660be17d3547aa581502fe2c572c84f.tar.xz qemu-68b459eaa660be17d3547aa581502fe2c572c84f.zip |
Merge remote-tracking branch 'remotes/armbru/tags/pull-monitor-2015-02-18' into staging
hmp: Normalize HMP command handler names
# gpg: Signature made Wed Feb 18 10:59:44 2015 GMT using RSA key ID EB918653
# gpg: Good signature from "Markus Armbruster <armbru@redhat.com>"
# gpg: aka "Markus Armbruster <armbru@pond.sub.org>"
* remotes/armbru/tags/pull-monitor-2015-02-18:
hmp: Name HMP info handler functions hmp_info_SUBCOMMAND()
hmp: Name HMP command handler functions hmp_COMMAND()
hmp: Clean up declarations for long-gone info handlers
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'device-hotplug.c')
-rw-r--r-- | device-hotplug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/device-hotplug.c b/device-hotplug.c index 9e38cc4808..833d8748d5 100644 --- a/device-hotplug.c +++ b/device-hotplug.c @@ -50,7 +50,7 @@ DriveInfo *add_init_drive(const char *optstr) return dinfo; } -void drive_hot_add(Monitor *mon, const QDict *qdict) +void hmp_drive_add(Monitor *mon, const QDict *qdict) { DriveInfo *dinfo = NULL; const char *opts = qdict_get_str(qdict, "opts"); |