Searched defs:inq_buf (Results 1 - 1 of 1) sorted by relevance

/drivers/block/
H A Dcciss.c1871 InquiryData_struct *inq_buf; local
1878 inq_buf = kzalloc(sizeof(InquiryData_struct), GFP_KERNEL);
1879 if (!inq_buf)
1883 rc = sendcmd_withirq(h, CISS_INQUIRY, inq_buf, sizeof(*inq_buf), 0,
1886 memcpy(vendor, &inq_buf->data_byte[8], VENDOR_LEN);
1888 memcpy(model, &inq_buf->data_byte[16], MODEL_LEN);
1890 memcpy(rev, &inq_buf->data_byte[32], REV_LEN);
1894 kfree(inq_buf);

Completed in 52 milliseconds