mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
hw/net: Use the IEC binary prefix definitions
It eases code review, unit is explicit. Patch generated using: $ git grep -E '(1024|2048|4096|8192|(<<|>>).?(10|20|30))' hw/ include/hw/ and modified manually. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Stefan Weil <sw@weilnetz.de> Message-Id: <20180625124238.25339-35-f4bug@amsat.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
d471bf3ebb
commit
872a2b7c4d
5 changed files with 13 additions and 10 deletions
|
@ -23,6 +23,7 @@
|
|||
#ifndef ALLWINNER_EMAC_H
|
||||
#define ALLWINNER_EMAC_H
|
||||
|
||||
#include "qemu/units.h"
|
||||
#include "net/net.h"
|
||||
#include "qemu/fifo8.h"
|
||||
#include "hw/net/mii.h"
|
||||
|
@ -125,8 +126,8 @@
|
|||
#define EMAC_INT_RX (1 << 8)
|
||||
|
||||
/* Due to lack of specifications, size of fifos is chosen arbitrarily */
|
||||
#define TX_FIFO_SIZE (4 * 1024)
|
||||
#define RX_FIFO_SIZE (32 * 1024)
|
||||
#define TX_FIFO_SIZE (4 * KiB)
|
||||
#define RX_FIFO_SIZE (32 * KiB)
|
||||
|
||||
#define NUM_TX_FIFOS 2
|
||||
#define RX_HDR_SIZE 8
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue