aboutsummaryrefslogtreecommitdiff
path: root/hw/audio
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2022-04-27 13:15:23 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2022-05-14 12:33:44 +0200
commit67aaa96ae451913ffd25766dc59341fe6b63619d (patch)
tree5957729be94a691cc9e1332d0195adee891679e8 /hw/audio
parentbf521c5655f7f821603d921e6de77e4e05fa44b9 (diff)
downloadqemu-67aaa96ae451913ffd25766dc59341fe6b63619d.zip
qemu-67aaa96ae451913ffd25766dc59341fe6b63619d.tar.gz
qemu-67aaa96ae451913ffd25766dc59341fe6b63619d.tar.bz2
soundhw: move help handling to vl.c
This will allow processing "-audio model=help" even if the backend part of the option is missing. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/audio')
-rw-r--r--hw/audio/soundhw.c24
1 files changed, 9 insertions, 15 deletions
diff --git a/hw/audio/soundhw.c b/hw/audio/soundhw.c
index a1558da..ebbd095 100644
--- a/hw/audio/soundhw.c
+++ b/hw/audio/soundhw.c
@@ -89,23 +89,17 @@ void select_soundhw(const char *optarg)
error_setg(&error_fatal, "only one -soundhw option is allowed");
}
- if (is_help_option(optarg)) {
- show_valid_soundhw();
- exit(0);
- }
- else {
- for (c = soundhw; c->name; ++c) {
- if (g_str_equal(c->name, optarg)) {
- selected = c;
- break;
- }
+ for (c = soundhw; c->name; ++c) {
+ if (g_str_equal(c->name, optarg)) {
+ selected = c;
+ break;
}
+ }
- if (!c->name) {
- error_report("Unknown sound card name `%s'", optarg);
- show_valid_soundhw();
- exit(1);
- }
+ if (!c->name) {
+ error_report("Unknown sound card name `%s'", optarg);
+ show_valid_soundhw();
+ exit(1);
}
}