diff options
Diffstat (limited to 'sys/dev/stg/tmc18c30.c')
-rw-r--r-- | sys/dev/stg/tmc18c30.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/sys/dev/stg/tmc18c30.c b/sys/dev/stg/tmc18c30.c index 19b4905..cfea4aa 100644 --- a/sys/dev/stg/tmc18c30.c +++ b/sys/dev/stg/tmc18c30.c @@ -191,9 +191,7 @@ struct scsi_low_funcs stgfuncs = { * hwfuncs ****************************************************/ static __inline void -stghw_bcr_write_1(sc, bcv) - struct stg_softc *sc; - u_int8_t bcv; +stghw_bcr_write_1(struct stg_softc *sc, u_int8_t bcv) { bus_space_write_1(sc->sc_iot, sc->sc_ioh, tmc_bctl, bcv); @@ -722,10 +720,7 @@ stg_pio_write(sc, ti, thold) } static int -stg_negate_signal(sc, mask, s) - struct stg_softc *sc; - u_int8_t mask; - u_char *s; +stg_negate_signal(struct stg_softc *sc, u_int8_t mask, u_char *s) { struct scsi_low_softc *slp = &sc->sc_sclow; bus_space_tag_t bst = sc->sc_iot; @@ -749,9 +744,7 @@ stg_negate_signal(sc, mask, s) } static int -stg_expect_signal(sc, phase, mask) - struct stg_softc *sc; - u_int8_t phase, mask; +stg_expect_signal(struct stg_softc *sc, u_int8_t phase, u_int8_t mask) { struct scsi_low_softc *slp = &sc->sc_sclow; bus_space_tag_t bst = sc->sc_iot; |