Browse Source

[intel] Correct definition of receive overrun bit

Reported-by: Robin Smidsrød <robin@smidsrod.no>
Tested-by: Robin Smidsrød <robin@smidsrod.no>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown 9 years ago
parent
commit
f3c2da7d4a
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/drivers/net/intel.h

+ 1
- 1
src/drivers/net/intel.h View File

99
 #define INTEL_IRQ_TXQE		0x00000002UL	/**< Transmit queue empty */
99
 #define INTEL_IRQ_TXQE		0x00000002UL	/**< Transmit queue empty */
100
 #define INTEL_IRQ_LSC		0x00000004UL	/**< Link status change */
100
 #define INTEL_IRQ_LSC		0x00000004UL	/**< Link status change */
101
 #define INTEL_IRQ_RXDMT0	0x00000010UL	/**< Receive queue low */
101
 #define INTEL_IRQ_RXDMT0	0x00000010UL	/**< Receive queue low */
102
+#define INTEL_IRQ_RXO		0x00000040UL	/**< Receive overrun */
102
 #define INTEL_IRQ_RXT0		0x00000080UL	/**< Receive timer */
103
 #define INTEL_IRQ_RXT0		0x00000080UL	/**< Receive timer */
103
-#define INTEL_IRQ_RXO		0x00000400UL	/**< Receive overrun */
104
 
104
 
105
 /** Interrupt Mask Set/Read Register */
105
 /** Interrupt Mask Set/Read Register */
106
 #define INTEL_IMS 0x000d0UL
106
 #define INTEL_IMS 0x000d0UL

Loading…
Cancel
Save