Searched refs:inq_buf (Results 1 – 1 of 1) sorted by relevance
/linux-4.4.14/drivers/block/ |
D | cciss.c | 1888 InquiryData_struct *inq_buf; in cciss_get_device_descr() local 1895 inq_buf = kzalloc(sizeof(InquiryData_struct), GFP_KERNEL); in cciss_get_device_descr() 1896 if (!inq_buf) in cciss_get_device_descr() 1900 rc = sendcmd_withirq(h, CISS_INQUIRY, inq_buf, sizeof(*inq_buf), 0, in cciss_get_device_descr() 1903 memcpy(vendor, &inq_buf->data_byte[8], VENDOR_LEN); in cciss_get_device_descr() 1905 memcpy(model, &inq_buf->data_byte[16], MODEL_LEN); in cciss_get_device_descr() 1907 memcpy(rev, &inq_buf->data_byte[32], REV_LEN); in cciss_get_device_descr() 1911 kfree(inq_buf); in cciss_get_device_descr()
|