summaryrefslogtreecommitdiff
path: root/sys/dev/wb/if_wb.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/wb/if_wb.c')
-rw-r--r--sys/dev/wb/if_wb.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/wb/if_wb.c b/sys/dev/wb/if_wb.c
index 4215d9e6aa71..ca66226dd898 100644
--- a/sys/dev/wb/if_wb.c
+++ b/sys/dev/wb/if_wb.c
@@ -256,7 +256,7 @@ wb_eeprom_putbyte(sc, addr)
struct wb_softc *sc;
int addr;
{
- register int d, i;
+ int d, i;
d = addr | WB_EECMD_READ;
@@ -286,7 +286,7 @@ wb_eeprom_getword(sc, addr, dest)
int addr;
u_int16_t *dest;
{
- register int i;
+ int i;
u_int16_t word = 0;
/* Enter EEPROM access mode. */
@@ -507,7 +507,7 @@ static void
wb_reset(sc)
struct wb_softc *sc;
{
- register int i;
+ int i;
struct mii_data *mii;
struct mii_softc *miisc;
@@ -1574,7 +1574,7 @@ static void
wb_stop(sc)
struct wb_softc *sc;
{
- register int i;
+ int i;
struct ifnet *ifp;
WB_LOCK_ASSERT(sc);