fix wrong definition of the interrupt mask
This commit is contained in:
parent
9575ffb769
commit
9fe8f64893
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@
|
|||
#define RX_BUF_LEN (2048)
|
||||
#define TX_BUF_LEN (1792)
|
||||
|
||||
#define INT_MASK (E1000_ICR_TXDW|E1000_ICR_TXQE|E1000_IMS_RXO|E1000_IMS_RXT0|E1000_IMS_RXDMT0|E1000_IMS_RXSEQ|E1000_IMS_LSC)
|
||||
#define INT_MASK (E1000_IMS_RXO|E1000_IMS_RXT0|E1000_IMS_RXDMT0|E1000_IMS_RXSEQ|E1000_IMS_LSC)
|
||||
#define INT_MASK_NO_RX (E1000_IMS_LSC)
|
||||
|
||||
typedef struct {
|
||||
|
|
Loading…
Add table
Reference in a new issue