diff options
author | Jan Kiszka | 2012-05-11 16:42:40 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2012-06-07 16:19:00 +0200 |
commit | 95d658002401e2e47a5404298ebe9508846e8a39 (patch) | |
tree | 36826830f860f95a07f0f83b21c4cd7d8ee072c7 /hw/intel-hda.c | |
parent | msi: Guard msi/msix_write_config with msi_present (diff) | |
download | qemu-95d658002401e2e47a5404298ebe9508846e8a39.tar.gz qemu-95d658002401e2e47a5404298ebe9508846e8a39.tar.xz qemu-95d658002401e2e47a5404298ebe9508846e8a39.zip |
msi: Invoke msi/msix_write_config from PCI core
Also this functions is better invoked by the core than by each and every
device. This allows to drop the config_write callbacks from ich and
intel-hda.
CC: Alexander Graf <agraf@suse.de>
CC: Gerd Hoffmann <kraxel@redhat.com>
CC: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/intel-hda.c')
-rw-r--r-- | hw/intel-hda.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/hw/intel-hda.c b/hw/intel-hda.c index bb11af286a..8f3b70bd14 100644 --- a/hw/intel-hda.c +++ b/hw/intel-hda.c @@ -1153,17 +1153,6 @@ static int intel_hda_exit(PCIDevice *pci) return 0; } -static void intel_hda_write_config(PCIDevice *pci, uint32_t addr, - uint32_t val, int len) -{ - IntelHDAState *d = DO_UPCAST(IntelHDAState, pci, pci); - - pci_default_write_config(pci, addr, val, len); - if (d->msi) { - msi_write_config(pci, addr, val, len); - } -} - static int intel_hda_post_load(void *opaque, int version) { IntelHDAState* d = opaque; @@ -1252,7 +1241,6 @@ static void intel_hda_class_init(ObjectClass *klass, void *data) k->init = intel_hda_init; k->exit = intel_hda_exit; - k->config_write = intel_hda_write_config; k->vendor_id = PCI_VENDOR_ID_INTEL; k->device_id = 0x2668; k->revision = 1; |