audio: deprecate -soundhw hda
Add deprecation message to the audio init function. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Message-id: 20200702132525.6849-11-kraxel@redhat.com
This commit is contained in:
parent
4b96159ecc
commit
fcb541c14e
@ -25,6 +25,7 @@
|
|||||||
#include "qemu/bitops.h"
|
#include "qemu/bitops.h"
|
||||||
#include "qemu/log.h"
|
#include "qemu/log.h"
|
||||||
#include "qemu/module.h"
|
#include "qemu/module.h"
|
||||||
|
#include "qemu/error-report.h"
|
||||||
#include "hw/audio/soundhw.h"
|
#include "hw/audio/soundhw.h"
|
||||||
#include "intel-hda.h"
|
#include "intel-hda.h"
|
||||||
#include "migration/vmstate.h"
|
#include "migration/vmstate.h"
|
||||||
@ -1307,6 +1308,8 @@ static int intel_hda_and_codec_init(PCIBus *bus)
|
|||||||
BusState *hdabus;
|
BusState *hdabus;
|
||||||
DeviceState *codec;
|
DeviceState *codec;
|
||||||
|
|
||||||
|
warn_report("'-soundhw hda' is deprecated, "
|
||||||
|
"please use '-device intel-hda -device hda-duplex' instead");
|
||||||
controller = DEVICE(pci_create_simple(bus, -1, "intel-hda"));
|
controller = DEVICE(pci_create_simple(bus, -1, "intel-hda"));
|
||||||
hdabus = QLIST_FIRST(&controller->child_bus);
|
hdabus = QLIST_FIRST(&controller->child_bus);
|
||||||
codec = qdev_new("hda-duplex");
|
codec = qdev_new("hda-duplex");
|
||||||
|
Loading…
Reference in New Issue
Block a user