HomeSort by: relevance | last modified time | path
    Searched defs:nduty (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/arch/macppc/dev/
fcu.c 509 int nduty = f->duty; local in function:fcu_set_rpm
517 nduty = uimax(20, nduty - 1);
520 nduty = uimin(0xd0, nduty + 1);
523 DPRINTF("%s nduty %d", __func__, nduty);
524 if (nduty != f->duty) {
525 uint8_t arg = nduty;
530 f->duty = nduty;
    [all...]
obio.c 956 unsigned int nduty = sc->sc_duty[which]; local in function:obio_set_rpm
962 DPRINTF("d %d s %d t %d diff %d ", nduty, current_speed, speed, diff);
965 nduty += 2;
966 if (nduty > 200) nduty = 200;
970 nduty -= 2;
971 if (nduty < 50) nduty = 50;
973 if (nduty != sc->sc_duty[which]) {
974 sc->sc_duty[which] = nduty;
    [all...]

Completed in 12 milliseconds