Lines Matching defs:resp
1398 struct resp_work *resp = container_of(work, struct resp_work, work);
1399 struct qaic_device *qdev = resp->qdev;
1400 struct wire_msg *msg = resp->buf;
1421 kfree(resp);
1449 struct resp_work *resp;
1456 resp = kmalloc(sizeof(*resp), GFP_ATOMIC);
1457 if (!resp) {
1462 INIT_WORK(&resp->work, resp_worker);
1463 resp->qdev = qdev;
1464 resp->buf = msg;
1465 queue_work(qdev->cntl_wq, &resp->work);