Lines Matching refs:resp
76 struct picolcd_pending *resp; in picolcd_debug_eeprom_read() local
91 resp = picolcd_send_and_wait(data->hdev, REPORT_EE_READ, raw_data, in picolcd_debug_eeprom_read()
93 if (!resp) in picolcd_debug_eeprom_read()
96 if (resp->in_report && resp->in_report->id == REPORT_EE_DATA) { in picolcd_debug_eeprom_read()
98 ret = resp->raw_data[2]; in picolcd_debug_eeprom_read()
101 if (copy_to_user(u, resp->raw_data+3, ret)) in picolcd_debug_eeprom_read()
107 kfree(resp); in picolcd_debug_eeprom_read()
115 struct picolcd_pending *resp; in picolcd_debug_eeprom_write() local
133 resp = picolcd_send_and_wait(data->hdev, REPORT_EE_WRITE, raw_data, in picolcd_debug_eeprom_write()
136 if (!resp) in picolcd_debug_eeprom_write()
139 if (resp->in_report && resp->in_report->id == REPORT_EE_DATA) { in picolcd_debug_eeprom_write()
141 if (memcmp(raw_data, resp->raw_data, 3+raw_data[2]) == 0) { in picolcd_debug_eeprom_write()
146 kfree(resp); in picolcd_debug_eeprom_write()
182 struct picolcd_pending *resp; in _picolcd_flash_read() local
191 resp = picolcd_send_and_wait(data->hdev, report_id, raw_data, len_off+1); in _picolcd_flash_read()
192 if (!resp || !resp->in_report) in _picolcd_flash_read()
194 if (resp->in_report->id == REPORT_MEMORY || in _picolcd_flash_read()
195 resp->in_report->id == REPORT_BL_READ_MEMORY) { in _picolcd_flash_read()
196 if (memcmp(raw_data, resp->raw_data, len_off+1) != 0) in _picolcd_flash_read()
198 if (copy_to_user(u+ret, resp->raw_data+len_off+1, raw_data[len_off])) { in _picolcd_flash_read()
208 kfree(resp); in _picolcd_flash_read()
237 struct picolcd_pending *resp; in _picolcd_flash_erase64() local
246 resp = picolcd_send_and_wait(data->hdev, report_id, raw_data, len_off); in _picolcd_flash_erase64()
247 if (!resp || !resp->in_report) in _picolcd_flash_erase64()
249 if (resp->in_report->id == REPORT_MEMORY || in _picolcd_flash_erase64()
250 resp->in_report->id == REPORT_BL_ERASE_MEMORY) { in _picolcd_flash_erase64()
251 if (memcmp(raw_data, resp->raw_data, len_off) != 0) in _picolcd_flash_erase64()
256 kfree(resp); in _picolcd_flash_erase64()
264 struct picolcd_pending *resp; in _picolcd_flash_write() local
277 resp = picolcd_send_and_wait(data->hdev, report_id, raw_data, in _picolcd_flash_write()
279 if (!resp || !resp->in_report) in _picolcd_flash_write()
281 if (resp->in_report->id == REPORT_MEMORY || in _picolcd_flash_write()
282 resp->in_report->id == REPORT_BL_WRITE_MEMORY) { in _picolcd_flash_write()
283 if (memcmp(raw_data, resp->raw_data, len_off+1+raw_data[len_off]) != 0) in _picolcd_flash_write()
291 kfree(resp); in _picolcd_flash_write()