void stg_intr(void *arg) { struct stg_softc *sc; sc = arg; SCSI_LOW_LOCK(&sc->sc_sclow); stgintr(sc); SCSI_LOW_UNLOCK(&sc->sc_sclow); }
void stg_intr (void *arg) { stgintr(arg); return; }
static void stg_isa_intr(void * arg) { stgintr(arg); }
static void stg_pccard_intr(void * arg) { stgintr(arg); }