david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[e1000e] Strip the Ethernet CRC from received packets

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown 2011-12-06 23:57:52 +00:00
parent fa3ca017ac
commit f289391134
1 changed files with 1 additions and 1 deletions

View File

@ -791,7 +791,7 @@ static void e1000e_configure_rx ( struct e1000_adapter *adapter )
/* Enable Receives */
rctl |= E1000_RCTL_EN | E1000_RCTL_BAM | E1000_RCTL_SZ_2048 |
E1000_RCTL_MPE;
E1000_RCTL_MPE | E1000_RCTL_SECRC;
E1000_WRITE_REG ( hw, E1000_RCTL, rctl );
e1e_flush();