aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/vge
diff options
context:
space:
mode:
authorPyun YongHyeon <yongari@FreeBSD.org>2009-12-14 17:53:10 +0000
committerPyun YongHyeon <yongari@FreeBSD.org>2009-12-14 17:53:10 +0000
commitb534dcd5c022757e75b933394b137bf4806cc961 (patch)
treec10a2c7518bfee8a0f8b899487d84f2e186c31b6 /sys/dev/vge
parentb0ffbd685ca9a4929f2bc4b91d1c24ae1f726c00 (diff)
Notes
Diffstat (limited to 'sys/dev/vge')
-rw-r--r--sys/dev/vge/if_vge.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/vge/if_vge.c b/sys/dev/vge/if_vge.c
index 08c183b72c4e..3d41f41beda8 100644
--- a/sys/dev/vge/if_vge.c
+++ b/sys/dev/vge/if_vge.c
@@ -233,7 +233,7 @@ vge_eeprom_getword(sc, addr, dest)
int addr;
u_int16_t *dest;
{
- register int i;
+ int i;
u_int16_t word = 0;
/*
@@ -602,7 +602,7 @@ static void
vge_reset(sc)
struct vge_softc *sc;
{
- register int i;
+ int i;
CSR_WRITE_1(sc, VGE_CRS1, VGE_CR1_SOFTRESET);
@@ -2261,7 +2261,7 @@ static void
vge_stop(sc)
struct vge_softc *sc;
{
- register int i;
+ int i;
struct ifnet *ifp;
VGE_LOCK_ASSERT(sc);