diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2011-01-20 16:21:40 +0900 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2011-01-20 15:33:34 +0200 |
commit | e407bf13ba65163a8f8669e0157839bbefdb43b8 (patch) | |
tree | 3853f9a26cd23a25f4c614edd146dfb802f6e991 /hw/msix.c | |
parent | 59369b0816de3e76fa20204be5f6144de1ce8937 (diff) |
msix: simplify write config
use pci_device_deassert_intx().
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/msix.c')
-rw-r--r-- | hw/msix.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -159,7 +159,6 @@ void msix_write_config(PCIDevice *dev, uint32_t addr, { unsigned enable_pos = dev->msix_cap + MSIX_CONTROL_OFFSET; int vector; - int i; if (!range_covers_byte(addr, len, enable_pos)) { return; @@ -169,9 +168,7 @@ void msix_write_config(PCIDevice *dev, uint32_t addr, return; } - for (i = 0; i < PCI_NUM_PINS; ++i) { - qemu_set_irq(dev->irq[i], 0); - } + pci_device_deassert_intx(dev); if (msix_function_masked(dev)) { return; |