Skip to content

Commit

Permalink
[e1000e] Strip the Ethernet CRC from received packets
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Brown <mcb30@ipxe.org>
  • Loading branch information
mcb30 committed Dec 8, 2011
1 parent fa3ca01 commit f289391
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/drivers/net/e1000e/e1000e_main.c
Expand Up @@ -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();

Expand Down

0 comments on commit f289391

Please sign in to comment.