summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/dev/pci/if_em.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/pci/if_em.c b/sys/dev/pci/if_em.c
index 459b507614a..a4ebc80d7bb 100644
--- a/sys/dev/pci/if_em.c
+++ b/sys/dev/pci/if_em.c
@@ -31,7 +31,7 @@ POSSIBILITY OF SUCH DAMAGE.
***************************************************************************/
-/* $OpenBSD: if_em.c,v 1.186 2008/07/15 17:50:20 kettenis Exp $ */
+/* $OpenBSD: if_em.c,v 1.187 2008/08/29 23:28:34 brad Exp $ */
/* $FreeBSD: if_em.c,v 1.46 2004/09/29 18:28:28 mlaier Exp $ */
#include <dev/pci/if_em.h>
@@ -315,8 +315,10 @@ em_attach(struct device *parent, struct device *self, void *aux)
case em_80003es2lan: /* Limit Jumbo Frame size */
sc->hw.max_frame_size = 9234;
break;
+ /* Adapters that do not support Jumbo frames */
+ case em_82542_rev2_0:
+ case em_82542_rev2_1:
case em_ich8lan:
- /* ICH8 does not support jumbo frames */
sc->hw.max_frame_size = ETHER_MAX_LEN;
break;
default: