diff options
| author | Edgar E. Iglesias | 2018-10-11 04:19:22 +0200 |
|---|---|---|
| committer | Peter Maydell | 2018-10-16 18:13:47 +0200 |
| commit | f02361822f73f28a4279783fdfb581c500660a36 (patch) | |
| tree | 5db837ce47ad1afeaebd39488d10be5171d14031 /include/hw | |
| parent | net: cadence_gem: Disable TSU feature bit (diff) | |
| download | qemu-f02361822f73f28a4279783fdfb581c500660a36.tar.gz qemu-f02361822f73f28a4279783fdfb581c500660a36.tar.xz qemu-f02361822f73f28a4279783fdfb581c500660a36.zip | |
net: cadence_gem: Use uint32_t for 32bit descriptor words
Use uint32_t instead of unsigned to describe 32bit descriptor words.
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Message-id: 20181011021931.4249-4-edgar.iglesias@gmail.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/hw')
| -rw-r--r-- | include/hw/net/cadence_gem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/net/cadence_gem.h b/include/hw/net/cadence_gem.h index 35de622063..633d564dc3 100644 --- a/include/hw/net/cadence_gem.h +++ b/include/hw/net/cadence_gem.h @@ -74,7 +74,7 @@ typedef struct CadenceGEMState { uint8_t can_rx_state; /* Debug only */ - unsigned rx_desc[MAX_PRIORITY_QUEUES][2]; + uint32_t rx_desc[MAX_PRIORITY_QUEUES][2]; bool sar_active[4]; } CadenceGEMState; |
