diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-26 10:40:37 +0100 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2019-10-27 07:55:08 -0400 |
commit | da17c7fc4e12d3366125b12c0d7d47ddfb978cdf (patch) | |
tree | 8b55fbb0e2bb45b1f3bfeb4ac16b0a5a48797ad3 | |
parent | b0b43d88dbce2e7174d3402c0bfb6175d20aa8a9 (diff) | |
download | virtio-spec-da17c7fc4e12d3366125b12c0d7d47ddfb978cdf.tar.gz |
virtio_pci_common_cfg: fix field name
The field is named config_msix_vector in the rest of the document,
use the same name in the struct.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Fixes: https://github.com/oasis-tcs/virtio-spec/issues/41
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
-rw-r--r-- | content.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content.tex b/content.tex index fcce57d..5329822 100644 --- a/content.tex +++ b/content.tex @@ -808,7 +808,7 @@ struct virtio_pci_common_cfg { le32 device_feature; /* read-only for driver */ le32 driver_feature_select; /* read-write */ le32 driver_feature; /* read-write */ - le16 msix_config; /* read-write */ + le16 config_msix_vector; /* read-write */ le16 num_queues; /* read-only for driver */ u8 device_status; /* read-write */ u8 config_generation; /* read-only for driver */ |