summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorStuart Henderson <sthen@cvs.openbsd.org>2009-07-18 13:21:33 +0000
committerStuart Henderson <sthen@cvs.openbsd.org>2009-07-18 13:21:33 +0000
commit6899d410112834cbf33272a6d7b7de4f1c95ab54 (patch)
treeddf4e775b52a9061f9af04482186919402f431ba /sys
parentce6ecdbd09cf3a2695da32cc776bbb21a4616db6 (diff)
reorder a switch block, no functional change but reduces the diff
with FreeBSD. From Brad.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/ic/re.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/ic/re.c b/sys/dev/ic/re.c
index f134ffada1d..9fec3201b48 100644
--- a/sys/dev/ic/re.c
+++ b/sys/dev/ic/re.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: re.c,v 1.111 2009/07/15 19:50:04 naddy Exp $ */
+/* $OpenBSD: re.c,v 1.112 2009/07/18 13:21:32 sthen Exp $ */
/* $FreeBSD: if_re.c,v 1.31 2004/09/04 07:54:05 ru Exp $ */
/*
* Copyright (c) 1997, 1998-2003
@@ -854,16 +854,16 @@ re_attach(struct rl_softc *sc, const char *intrstr)
*/
sc->rl_flags |= RL_FLAG_NOJUMBO;
break;
- case RL_HWREV_8169:
- case RL_HWREV_8169S:
- case RL_HWREV_8110S:
- sc->rl_flags |= RL_FLAG_MACLDPS;
- break;
case RL_HWREV_8169_8110SB:
case RL_HWREV_8169_8110SBL:
case RL_HWREV_8169_8110SCd:
case RL_HWREV_8169_8110SCe:
- sc->rl_flags |= RL_FLAG_PHYWAKE | RL_FLAG_MACLDPS;
+ sc->rl_flags |= RL_FLAG_PHYWAKE;
+ /* FALLTHROUGH */
+ case RL_HWREV_8169:
+ case RL_HWREV_8169S:
+ case RL_HWREV_8110S:
+ sc->rl_flags |= RL_FLAG_MACLDPS;
break;
default:
break;