diff options
author | Gerd Hoffmann | 2011-11-07 16:33:09 +0100 |
---|---|---|
committer | Anthony Liguori | 2011-11-07 17:57:37 +0100 |
commit | 25a21c94c0055e078acb7f7455e66c8a15f32385 (patch) | |
tree | 2e121785fdc62ac0652287924aa3eddf2b6fc8af /hw/pc_piix.c | |
parent | pc: add 1.0 machine type (diff) | |
download | qemu-25a21c94c0055e078acb7f7455e66c8a15f32385.tar.gz qemu-25a21c94c0055e078acb7f7455e66c8a15f32385.tar.xz qemu-25a21c94c0055e078acb7f7455e66c8a15f32385.zip |
ac97: don't override the pci subsystem id
This patch removes the code lines which set the subsystem id for the
emulated ac97 card to 8086:0000. Due to the device id being zero the
subsystem id isn't vaild anyway. With the patch applied the sound card
gets the default qemu subsystem id (1af4:1100) instead.
[ v2: old & broken id is maintained for -M pc-$oldqemuversion ]
Cc: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/pc_piix.c')
-rw-r--r-- | hw/pc_piix.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/hw/pc_piix.c b/hw/pc_piix.c index 93e40d037f..27ea5707e2 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -347,6 +347,10 @@ static QEMUMachine pc_machine_v0_13 = { .driver = "virtio-net-pci", .property = "event_idx", .value = "off", + },{ + .driver = "AC97", + .property = "use_broken_id", + .value = stringify(1), }, { /* end of list */ } }, @@ -390,6 +394,10 @@ static QEMUMachine pc_machine_v0_12 = { .driver = "virtio-net-pci", .property = "event_idx", .value = "off", + },{ + .driver = "AC97", + .property = "use_broken_id", + .value = stringify(1), }, { /* end of list */ } } @@ -441,6 +449,10 @@ static QEMUMachine pc_machine_v0_11 = { .driver = "virtio-net-pci", .property = "event_idx", .value = "off", + },{ + .driver = "AC97", + .property = "use_broken_id", + .value = stringify(1), }, { /* end of list */ } } @@ -504,6 +516,10 @@ static QEMUMachine pc_machine_v0_10 = { .driver = "virtio-net-pci", .property = "event_idx", .value = "off", + },{ + .driver = "AC97", + .property = "use_broken_id", + .value = stringify(1), }, { /* end of list */ } }, |