All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] pcie: Fix incorrect write to device ctl2 register
@ 2014-08-21  8:31 arei.gonglei
  2014-08-21  8:58 ` Paolo Bonzini
  0 siblings, 1 reply; 3+ messages in thread
From: arei.gonglei @ 2014-08-21  8:31 UTC (permalink / raw)
  To: qemu-devel; +Cc: weidong.huang, marcel.a, mst, knut.omang, Gonglei, pbonzini

From: Gonglei <arei.gonglei@huawei.com>

ARI Forwarding Enable bit locate
Device Control 2 Register (Offset 28h).
Maybe a typo.

Signed-off-by: Gonglei <arei.gonglei@huawei.com>
---
 hw/pci/pcie.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/pci/pcie.c b/hw/pci/pcie.c
index a123c01..3f4b319 100644
--- a/hw/pci/pcie.c
+++ b/hw/pci/pcie.c
@@ -504,7 +504,7 @@ void pcie_cap_ari_init(PCIDevice *dev)
     uint32_t pos = dev->exp.exp_cap;
     pci_long_test_and_set_mask(dev->config + pos + PCI_EXP_DEVCAP2,
                                PCI_EXP_DEVCAP2_ARI);
-    pci_long_test_and_set_mask(dev->wmask + pos + PCI_EXP_DEVCTL2,
+    pci_long_test_and_set_mask(dev->config + pos + PCI_EXP_DEVCTL2,
                                PCI_EXP_DEVCTL2_ARI);
 }
 
-- 
1.7.12.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-08-21  9:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-21  8:31 [Qemu-devel] [PATCH] pcie: Fix incorrect write to device ctl2 register arei.gonglei
2014-08-21  8:58 ` Paolo Bonzini
2014-08-21  9:11   ` Gonglei (Arei)

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.