Move the definition of nsp_start_timer() earlier in the file before it is

called so that it can be inlined.
This commit is contained in:
John Baldwin 2001-01-23 22:08:21 +00:00
parent 32c98125c9
commit acf5cad5aa
1 changed files with 12 additions and 12 deletions

View File

@ -341,6 +341,18 @@ nsphw_bus_reset(sc)
bus_space_write_1(bst, bsh, nsp_irqcr, IRQSR_MASK);
}
static __inline void
nsp_start_timer(sc, time)
struct nsp_softc *sc;
int time;
{
bus_space_tag_t bst = sc->sc_iot;
bus_space_handle_t bsh = sc->sc_ioh;
sc->sc_timer = time;
nsp_cr_write_1(bst, bsh, NSPR_TIMERCNT, time);
}
static int
nsphw_start_selection(sc, cb)
struct nsp_softc *sc;
@ -534,18 +546,6 @@ nsp_lun_init(sc, ti, li)
return 0;
}
static __inline void
nsp_start_timer(sc, time)
struct nsp_softc *sc;
int time;
{
bus_space_tag_t bst = sc->sc_iot;
bus_space_handle_t bsh = sc->sc_ioh;
sc->sc_timer = time;
nsp_cr_write_1(bst, bsh, NSPR_TIMERCNT, time);
}
/**************************************************************
* General probe attach
**************************************************************/