diff options
author | Akihiko Odaki <akihiko.odaki@daynix.com> | 2022-11-03 10:50:17 +0900 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2022-11-06 10:14:26 +0100 |
commit | 897c0da96f936217e3e2a04c77486ca93c2f1dea (patch) | |
tree | 4e3319bb691b52ff8c9414220d94dc472b0016a6 | |
parent | 6295a58ad1b73985b9c32d184de7d2ed1fbe1774 (diff) | |
download | qemu-897c0da96f936217e3e2a04c77486ca93c2f1dea.zip qemu-897c0da96f936217e3e2a04c77486ca93c2f1dea.tar.gz qemu-897c0da96f936217e3e2a04c77486ca93c2f1dea.tar.bz2 |
tests/qtest/libqos/e1000e: Refer common PCI ID definitions
This is yet another minor cleanup to ease understanding and
future refactoring of the tests.
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Message-Id: <20221103015017.19947-1-akihiko.odaki@daynix.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | tests/qtest/libqos/e1000e.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/qtest/libqos/e1000e.c b/tests/qtest/libqos/e1000e.c index ed47e34..5f80035 100644 --- a/tests/qtest/libqos/e1000e.c +++ b/tests/qtest/libqos/e1000e.c @@ -18,6 +18,7 @@ #include "qemu/osdep.h" #include "hw/net/e1000_regs.h" +#include "hw/pci/pci_ids.h" #include "../libqtest.h" #include "pci-pc.h" #include "qemu/sockets.h" @@ -217,8 +218,8 @@ static void *e1000e_pci_create(void *pci_bus, QGuestAllocator *alloc, static void e1000e_register_nodes(void) { QPCIAddress addr = { - .vendor_id = 0x8086, - .device_id = 0x10D3, + .vendor_id = PCI_VENDOR_ID_INTEL, + .device_id = E1000_DEV_ID_82574L, }; /* FIXME: every test using this node needs to setup a -netdev socket,id=hs0 |