diff options
| author | Paolo Bonzini | 2022-04-27 13:15:23 +0200 |
|---|---|---|
| committer | Paolo Bonzini | 2022-05-14 12:33:44 +0200 |
| commit | 67aaa96ae451913ffd25766dc59341fe6b63619d (patch) | |
| tree | 5957729be94a691cc9e1332d0195adee891679e8 /softmmu | |
| parent | soundhw: unify initialization for ISA and PCI soundhw (diff) | |
| download | qemu-67aaa96ae451913ffd25766dc59341fe6b63619d.tar.gz qemu-67aaa96ae451913ffd25766dc59341fe6b63619d.tar.xz qemu-67aaa96ae451913ffd25766dc59341fe6b63619d.zip | |
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 'softmmu')
| -rw-r--r-- | softmmu/vl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/softmmu/vl.c b/softmmu/vl.c index 817d515783..0363cbd9b4 100644 --- a/softmmu/vl.c +++ b/softmmu/vl.c @@ -2931,6 +2931,10 @@ void qemu_init(int argc, char **argv, char **envp) audio_parse_option(optarg); break; case QEMU_OPTION_soundhw: + if (is_help_option(optarg)) { + show_valid_soundhw(); + exit(0); + } select_soundhw (optarg); break; case QEMU_OPTION_h: |
