We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b96159 commit fcb541cCopy full SHA for fcb541c
hw/audio/intel-hda.c
@@ -25,6 +25,7 @@
25
#include "qemu/bitops.h"
26
#include "qemu/log.h"
27
#include "qemu/module.h"
28
+#include "qemu/error-report.h"
29
#include "hw/audio/soundhw.h"
30
#include "intel-hda.h"
31
#include "migration/vmstate.h"
@@ -1307,6 +1308,8 @@ static int intel_hda_and_codec_init(PCIBus *bus)
1307
1308
BusState *hdabus;
1309
DeviceState *codec;
1310
1311
+ warn_report("'-soundhw hda' is deprecated, "
1312
+ "please use '-device intel-hda -device hda-duplex' instead");
1313
controller = DEVICE(pci_create_simple(bus, -1, "intel-hda"));
1314
hdabus = QLIST_FIRST(&controller->child_bus);
1315
codec = qdev_new("hda-duplex");
0 commit comments