aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPyun YongHyeon <yongari@FreeBSD.org>2010-10-06 01:23:40 +0000
committerPyun YongHyeon <yongari@FreeBSD.org>2010-10-06 01:23:40 +0000
commit7d3d9608d1d8cab273ed1c5ae09aa24c6209adde (patch)
tree76886829f12b43cfb9a2b0236b73a510a621cc62
parenteea8956a5bdf19431b23826f55750e2f353c9d81 (diff)
downloadsrc-7d3d9608d1d8cab273ed1c5ae09aa24c6209adde.tar.gz
src-7d3d9608d1d8cab273ed1c5ae09aa24c6209adde.zip
Fix bge(4) build breakage when BGE_REGISTER_DEBUG is defined.
Notes
Notes: svn path=/head/; revision=213468
-rw-r--r--sys/dev/bge/if_bge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/bge/if_bge.c b/sys/dev/bge/if_bge.c
index e9d9e5ce5f57..d2e47bc01e42 100644
--- a/sys/dev/bge/if_bge.c
+++ b/sys/dev/bge/if_bge.c
@@ -5355,7 +5355,7 @@ bge_sysctl_debug_info(SYSCTL_HANDLER_ARGS)
printf(" - PCI-X Bus\n");
if (sc->bge_flags & BGE_FLAG_PCIE)
printf(" - PCI Express Bus\n");
- if (sc->bge_phy_flags & BGE_FLAG_NO_3LED)
+ if (sc->bge_phy_flags & BGE_PHY_NO_3LED)
printf(" - No 3 LEDs\n");
if (sc->bge_flags & BGE_FLAG_RX_ALIGNBUG)
printf(" - RX Alignment Bug\n");