/src/sys/arch/usermode/dev/ |
vatapi.c | 239 sa.sa_inqbuf.type = inqbuf.device; 240 sa.sa_inqbuf.removable = inqbuf.dev_qual2 & SID_REMOVABLE ? 242 if (sa.sa_inqbuf.removable) 244 sa.sa_inqbuf.vendor = vendor; 245 sa.sa_inqbuf.product = product; 246 sa.sa_inqbuf.revision = revision;
|
/src/sys/dev/scsipi/ |
st_atapi.c | 74 (void)scsipi_inqmatch(&sa->sa_inqbuf, 88 if (strcmp(sa->sa_inqbuf.vendor, "OnStream DI-30") == 0) {
|
ss_scanjet.c | 97 if (!memcmp(sa->sa_inqbuf.product, "C1750A", 6)) { 100 } else if (!memcmp(sa->sa_inqbuf.product, "C2500A", 6)) { 103 } else if (!memcmp(sa->sa_inqbuf.product, "C2520A", 6)) { 106 } else if (!memcmp(sa->sa_inqbuf.product, "C1130A", 6)) { 109 } else if (!memcmp(sa->sa_inqbuf.product, "C5110A", 6)) {
|
ss.c | 145 (void)scsipi_inqmatch(&sa->sa_inqbuf, 186 if (memcmp(sa->sa_inqbuf.vendor, "MUSTEK", 6) == 0) 188 if (memcmp(sa->sa_inqbuf.vendor, "HP ", 8) == 0 && 189 memcmp(sa->sa_inqbuf.product, "ScanJet 5300C", 13) != 0)
|
atapiconf.c | 269 &sa->sa_inqbuf, (const void *)atapi_quirk_patterns, 313 inqbuf = &sa->sa_inqbuf;
|
scsiconf.c | 564 inqbuf = &sa->sa_inqbuf; 974 (*chan->chan_adapter->adapt_accesschk)(periph, &sa.sa_inqbuf)) 1004 sa.sa_inqbuf.type = inqbuf.device; 1005 sa.sa_inqbuf.removable = inqbuf.dev_qual2 & SID_REMOVABLE ? 1007 sa.sa_inqbuf.vendor = inqbuf.vendor; 1008 sa.sa_inqbuf.product = inqbuf.product; 1009 sa.sa_inqbuf.revision = inqbuf.revision; 1014 &sa.sa_inqbuf, scsi_quirk_patterns,
|
st_scsi.c | 102 (void)scsipi_inqmatch(&sa->sa_inqbuf,
|
atapi_wdc.c | 318 sa.sa_inqbuf.type = ATAPI_CFG_TYPE(id->atap_config); 319 sa.sa_inqbuf.removable = id->atap_config & ATAPI_CFG_REMOV ? 329 sa.sa_inqbuf.vendor = model; 330 sa.sa_inqbuf.product = serial_number; 331 sa.sa_inqbuf.revision = firmware_revision;
|
ss_mustek.c | 112 if (!memcmp(sa->sa_inqbuf.product, "MFS-06000CX", 11)) { 117 if (!memcmp(sa->sa_inqbuf.product, "MFS-12000CX", 11)) {
|
sd.c | 241 (void)scsipi_inqmatch(&sa->sa_inqbuf, 264 sd->type = (sa->sa_inqbuf.type & SID_TYPE); 265 memcpy(sd->name, sa->sa_inqbuf.product, uimin(16, sizeof(sd->name))); 266 memcpy(sd->typename, sa->sa_inqbuf.product,
|
ch.c | 193 (void)scsipi_inqmatch(&sa->sa_inqbuf, 220 ch_get_quirks(sc, &sa->sa_inqbuf);
|
scsipiconf.h | 659 struct scsipi_inquiry_pattern sa_inqbuf; member in struct:scsipibus_attach_args
|
if_se.c | 310 (void)scsipi_inqmatch(&sa->sa_inqbuf,
|
if_dse.c | 334 (void)scsipi_inqmatch(&sa->sa_inqbuf,
|
st.c | 407 st_identify_drive(st, &sa->sa_inqbuf);
|
cd.c | 264 (void)scsipi_inqmatch(&sa->sa_inqbuf,
|
/src/sys/dev/usb/ |
umass_scsipi.c | 574 sa.sa_inqbuf.type = inqbuf.device; 575 sa.sa_inqbuf.removable = inqbuf.dev_qual2 & SID_REMOVABLE ? 577 if (sa.sa_inqbuf.removable) 579 sa.sa_inqbuf.vendor = vendor; 580 sa.sa_inqbuf.product = product; 581 sa.sa_inqbuf.revision = revision;
|
/src/sys/dev/ic/ |
siisata.c | 1669 sa.sa_inqbuf.type = ATAPI_CFG_TYPE(id->atap_config); 1670 sa.sa_inqbuf.removable = id->atap_config & ATAPI_CFG_REMOV ? 1678 sa.sa_inqbuf.vendor = model; 1679 sa.sa_inqbuf.product = serial_number; 1680 sa.sa_inqbuf.revision = firmware_revision;
|
ahcisata_core.c | 2164 sa.sa_inqbuf.type = ATAPI_CFG_TYPE(id->atap_config); 2165 sa.sa_inqbuf.removable = id->atap_config & ATAPI_CFG_REMOV ? 2173 sa.sa_inqbuf.vendor = model; 2174 sa.sa_inqbuf.product = serial_number; 2175 sa.sa_inqbuf.revision = firmware_revision;
|
mvsata.c | 817 sa.sa_inqbuf.type = ATAPI_CFG_TYPE(id->atap_config); 818 sa.sa_inqbuf.removable = id->atap_config & ATAPI_CFG_REMOV ? 826 sa.sa_inqbuf.vendor = model; 827 sa.sa_inqbuf.product = serial_number; 828 sa.sa_inqbuf.revision = firmware_revision;
|
/src/sys/arch/dreamcast/dev/g1/ |
gdrom.c | 332 (void)scsipi_inqmatch(&sa->sa_inqbuf,
|