diff options
author | Akihiko Odaki | 2022-11-05 06:30:10 +0100 |
---|---|---|
committer | Thomas Huth | 2022-11-06 10:14:26 +0100 |
commit | 624ee20cb9742bb536a778b9585c916b243e78f2 (patch) | |
tree | 17bae6e5d32be63647a3c347fde35088a64daaa1 /tests/qtest | |
parent | tests/qtest/libqos/e1000e: Use E1000_STATUS_ASDV_1000 (diff) | |
download | qemu-624ee20cb9742bb536a778b9585c916b243e78f2.tar.gz qemu-624ee20cb9742bb536a778b9585c916b243e78f2.tar.xz qemu-624ee20cb9742bb536a778b9585c916b243e78f2.zip |
tests/qtest/libqos/e1000e: Use IVAR shift definitions
There were still some constants defined in e1000_regs.h.
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Message-Id: <20221105053010.38037-1-akihiko.odaki@daynix.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/qtest')
-rw-r--r-- | tests/qtest/libqos/e1000e.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/qtest/libqos/e1000e.c b/tests/qtest/libqos/e1000e.c index 05af6f2118..80b3e3db90 100644 --- a/tests/qtest/libqos/e1000e.c +++ b/tests/qtest/libqos/e1000e.c @@ -30,9 +30,9 @@ #include "e1000e.h" #define E1000E_IVAR_TEST_CFG \ - (E1000E_RX0_MSG_ID | E1000_IVAR_INT_ALLOC_VALID | \ - ((E1000E_TX0_MSG_ID | E1000_IVAR_INT_ALLOC_VALID) << 8) | \ - ((E1000E_OTHER_MSG_ID | E1000_IVAR_INT_ALLOC_VALID) << 16) | \ + (((E1000E_RX0_MSG_ID | E1000_IVAR_INT_ALLOC_VALID) << E1000_IVAR_RXQ0_SHIFT) | \ + ((E1000E_TX0_MSG_ID | E1000_IVAR_INT_ALLOC_VALID) << E1000_IVAR_TXQ0_SHIFT) | \ + ((E1000E_OTHER_MSG_ID | E1000_IVAR_INT_ALLOC_VALID) << E1000_IVAR_OTHER_SHIFT) | \ E1000_IVAR_TX_INT_EVERY_WB) #define E1000E_RING_LEN (0x1000) |