diff options
author | Markus Armbruster <armbru@redhat.com> | 2017-10-06 15:16:45 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-12-20 09:11:50 +0100 |
commit | 3e05349de8bd6744d23a26beac9ed6fb2e286f80 (patch) | |
tree | eed138b0147d86fb37cde2267f72d43aad3fe188 /include | |
parent | da78e382dddc499882120590ae0ac834881a96b8 (diff) | |
download | qemu-3e05349de8bd6744d23a26beac9ed6fb2e286f80.zip |
option: Drop unused get_param_value(), get_next_param_value()
Their last user went away in commit f51074cdc6, "pci-hotplug-old: Has
been dead for five major releases, bury", v2.3.0. Remove them, as new
code should use QemuOpts or maybe keyval_parse() instead.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20171006131645.17729-1-armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu/option.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/qemu/option.h b/include/qemu/option.h index f7338dbe80..a88c5f02b1 100644 --- a/include/qemu/option.h +++ b/include/qemu/option.h @@ -31,11 +31,6 @@ const char *get_opt_name(char *buf, int buf_size, const char *p, char delim); const char *get_opt_value(char *buf, int buf_size, const char *p); -int get_next_param_value(char *buf, int buf_size, - const char *tag, const char **pstr); -int get_param_value(char *buf, int buf_size, - const char *tag, const char *str); - void parse_option_size(const char *name, const char *value, uint64_t *ret, Error **errp); |