/src/sys/dev/ic/ |
aic6360.c | 727 u_char selid, target, lun; local in function:aic_reselect 737 selid = sc->sc_selid & ~(1 << sc->sc_initiator); 738 if (selid & (selid - 1)) { 740 "reselect with invalid selid %02x; " 741 "sending DEVICE RESET\n", selid); 751 target = ffs(selid) - 1; 1785 sc->sc_selid = bus_space_read_1(iot, ioh, SELID);
|
mb89352.c | 709 uint8_t selid, target, lun; local in function:spc_reselect 720 selid = sc->sc_selid & ~(1 << sc->sc_initiator); 721 if (selid & (selid - 1)) { 722 printf("%s: reselect with invalid selid %02x; " 723 "sending DEVICE RESET\n", device_xname(sc->sc_dev), selid); 734 target = ffs(selid) - 1;
|
ncr53c9x.c | 1445 uint8_t selid, target, lun; local in function:ncr53c9x_reselect 1459 selid = sc->sc_selid & ~(1 << sc->sc_id); 1460 if (selid & (selid - 1)) { 1461 printf("%s: reselect with invalid selid %02x;" 1463 device_xname(sc->sc_dev), selid); 1467 target = ffs(selid) - 1; 1596 * then first byte is selid, and then message 2481 NCR_INTS(("selid=%02x ", sc->sc_selid));
|