summaryrefslogtreecommitdiff
path: root/sys/dev/tl
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2017-05-17 00:34:34 +0000
committerEd Maste <emaste@FreeBSD.org>2017-05-17 00:34:34 +0000
commit3e85b721d653d65a5b6ff655ed1551113f0e0d5b (patch)
tree9f2b92961a0e2680de78b6f1c653a05926cbf817 /sys/dev/tl
parent00f6cd3f568295e501deae63e38b34d1137a6eb9 (diff)
Notes
Diffstat (limited to 'sys/dev/tl')
-rw-r--r--sys/dev/tl/if_tl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/tl/if_tl.c b/sys/dev/tl/if_tl.c
index b80e81f7af1b..5d218e794f5e 100644
--- a/sys/dev/tl/if_tl.c
+++ b/sys/dev/tl/if_tl.c
@@ -534,7 +534,7 @@ static u_int8_t tl_eeprom_putbyte(sc, byte)
struct tl_softc *sc;
int byte;
{
- register int i, ack = 0;
+ int i, ack = 0;
/*
* Make sure we're in TX mode.
@@ -579,7 +579,7 @@ static u_int8_t tl_eeprom_getbyte(sc, addr, dest)
int addr;
u_int8_t *dest;
{
- register int i;
+ int i;
u_int8_t byte = 0;
device_t tl_dev = sc->tl_dev;
@@ -2199,7 +2199,7 @@ static void
tl_stop(sc)
struct tl_softc *sc;
{
- register int i;
+ int i;
struct ifnet *ifp;
TL_LOCK_ASSERT(sc);