summary refs log tree commit diff stats
path: root/hw/audio/pcspk.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2022-04-27 12:01:48 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2022-05-07 07:46:59 +0200
commit6033b9ecd4f6a26b78f44a94813e1e464f5b0549 (patch)
tree874bb237d433c319b1557b0409480200d395b653 /hw/audio/pcspk.c
parent2df89d542000819f0dd45134e24174997aca214e (diff)
downloadfocaccia-qemu-6033b9ecd4f6a26b78f44a94813e1e464f5b0549.tar.gz
focaccia-qemu-6033b9ecd4f6a26b78f44a94813e1e464f5b0549.zip
pc: remove -soundhw pcspk
The pcspk device is the only user of the init_isa function, and the only
-soundhw option which does not create a new device (it hacks into the
PCSpkState by hand).  Remove it, since it was deprecated.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/audio/pcspk.c')
-rw-r--r--hw/audio/pcspk.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/hw/audio/pcspk.c b/hw/audio/pcspk.c
index dfc7ebca4e..daf92a4ce1 100644
--- a/hw/audio/pcspk.c
+++ b/hw/audio/pcspk.c
@@ -245,18 +245,8 @@ static const TypeInfo pcspk_info = {
     .class_init     = pcspk_class_initfn,
 };
 
-static int pcspk_audio_init_soundhw(ISABus *bus)
-{
-    PCSpkState *s = pcspk_state;
-
-    warn_report("'-soundhw pcspk' is deprecated, "
-                "please set a backend using '-machine pcspk-audiodev=<name>' instead");
-    return pcspk_audio_init(s);
-}
-
 static void pcspk_register(void)
 {
     type_register_static(&pcspk_info);
-    isa_register_soundhw("pcspk", "PC speaker", pcspk_audio_init_soundhw);
 }
 type_init(pcspk_register)