mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
pcie: correct mistaken register bit for End-End TLP Prefix Blocking
from pcie spec 7.8.17, the End-End TLP Prefix Blocking bit local is 15(e.g. 0x8000) in device control 2 register. Signed-off-by: Chen Fan <chen.fan.fnst@cn.fujitsu.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
6c936b7423
commit
30b04f8711
2 changed files with 2 additions and 2 deletions
|
@ -72,7 +72,7 @@
|
|||
#define PCI_EXP_DEVCAP2_EFF 0x100000
|
||||
#define PCI_EXP_DEVCAP2_EETLPP 0x200000
|
||||
|
||||
#define PCI_EXP_DEVCTL2_EETLPPB 0x80
|
||||
#define PCI_EXP_DEVCTL2_EETLPPB 0x8000
|
||||
|
||||
/* ARI */
|
||||
#define PCI_ARI_VER 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue