diff options
Diffstat (limited to 'sys/dev/si/si.c')
| -rw-r--r-- | sys/dev/si/si.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/si/si.c b/sys/dev/si/si.c index 2d5d6a339803..96c555b3bc89 100644 --- a/sys/dev/si/si.c +++ b/sys/dev/si/si.c @@ -30,7 +30,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN * NO EVENT SHALL THE AUTHORS BE LIABLE. * - * $Id: si.c,v 1.71 1998/06/07 17:10:56 dfr Exp $ + * $Id: si.c,v 1.72 1998/06/10 12:49:54 phk Exp $ */ #ifndef lint @@ -793,7 +793,7 @@ siattach(id) /* OK, now lets download the download code */ - if ((sc->sc_type == SIJETISA) || (sc->sc_type == SIJETPCI)) { + if (SI_ISJET(sc->sc_type)) { DPRINT((0, DBG_DOWNLOAD, "si%d: jet_download: nbytes %d\n", id->id_unit, si3_t225_dsize)); si_bcopy(si3_t225_download, maddr + si3_t225_downloadaddr, @@ -889,7 +889,7 @@ siattach(id) sc->sc_type = SIEMPTY; return 0; case 1: - if ((sc->sc_type == SIJETISA) || (sc->sc_type == SIJETPCI)) { + if (SI_ISJET(sc->sc_type)) { /* set throttle to 100 times per second */ regp->int_count = JET_INT_COUNT; /* rx_intr_count is a NOP in Jet */ |
