diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2004-12-08 01:45:05 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2004-12-08 01:45:05 +0000 |
commit | b288f986e44f6fa0b6c9bff217f5dc5669630251 (patch) | |
tree | b37dd19ea8e064d53794975aff00716f5c16f284 /sys/dev/pci | |
parent | 6a883523f7c9392d917e26827b1583b5aedd283c (diff) |
Enable jumbo frames on Yukon varients of sk(4).
ok mcbride@.
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/if_sk.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/if_sk.c b/sys/dev/pci/if_sk.c index b35fbdc738a..d38caf5b6ed 100644 --- a/sys/dev/pci/if_sk.c +++ b/sys/dev/pci/if_sk.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_sk.c,v 1.51 2004/11/16 19:34:58 brad Exp $ */ +/* $OpenBSD: if_sk.c,v 1.52 2004/12/08 01:45:04 krw Exp $ */ /* * Copyright (c) 1997, 1998, 1999, 2000 @@ -2425,7 +2425,8 @@ void sk_init_yukon(sc_if) /* serial mode register */ DPRINTFN(6, ("sk_init_yukon: 9\n")); SK_YU_WRITE_2(sc_if, YUKON_SMR, YU_SMR_DATA_BLIND(0x1c) | - YU_SMR_MFL_VLAN | YU_SMR_IPG_DATA(0x1e)); + YU_SMR_MFL_VLAN | YU_SMR_MFL_JUMBO | + YU_SMR_IPG_DATA(0x1e)); DPRINTFN(6, ("sk_init_yukon: 10\n")); /* Setup Yukon's address */ |