aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2005-01-05 09:02:05 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2005-01-05 09:02:05 +0000
commit93a8f356885dbb9d2b2f644a1e3cec65ecd42608 (patch)
tree187abac42270a4c14194a79384508e25880e8db1 /sys
parentbccebad4918a863f0fdf943e3ffc85593a16fd51 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/pci/if_sis.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/pci/if_sis.c b/sys/pci/if_sis.c
index aab5ca8f1890b..4776559d8deaa 100644
--- a/sys/pci/if_sis.c
+++ b/sys/pci/if_sis.c
@@ -290,7 +290,7 @@ static void
sis_eeprom_idle(sc)
struct sis_softc *sc;
{
- register int i;
+ int i;
SIO_SET(SIS_EECTL_CSEL);
sis_delay(sc);
@@ -321,7 +321,7 @@ sis_eeprom_putbyte(sc, addr)
struct sis_softc *sc;
int addr;
{
- register int d, i;
+ int d, i;
d = addr | SIS_EECMD_READ;
@@ -353,7 +353,7 @@ sis_eeprom_getword(sc, addr, dest)
int addr;
u_int16_t *dest;
{
- register int i;
+ int i;
u_int16_t word = 0;
/* Force EEPROM to idle state. */
@@ -522,7 +522,7 @@ sis_read_mac(sc, dev, dest)
static void sis_mii_sync(sc)
struct sis_softc *sc;
{
- register int i;
+ int i;
SIO_SET(SIS_MII_DIR|SIS_MII_DATA);
@@ -972,7 +972,7 @@ static void
sis_reset(sc)
struct sis_softc *sc;
{
- register int i;
+ int i;
SIS_SETBIT(sc, SIS_CSR, SIS_CSR_RESET);
@@ -2347,7 +2347,7 @@ static void
sis_stop(sc)
struct sis_softc *sc;
{
- register int i;
+ int i;
struct ifnet *ifp;
if (sc->sis_stopped)