Home | History | Annotate | Download | only in scsipi

Lines Matching refs:match

183 		const struct scsipi_inquiry_pattern *match = base;
186 if (type != match->type)
188 if (inqbuf->removable != match->removable)
191 len = strlen(match->vendor);
192 if (memcmp(inqbuf->vendor, match->vendor, len))
195 len = strlen(match->product);
196 if (memcmp(inqbuf->product, match->product, len))
199 len = strlen(match->revision);
200 if (memcmp(inqbuf->revision, match->revision, len))
206 priority, match->type, match->removable,
207 match->vendor, match->product, match->revision);