Lines Matching refs:req
21 struct peci_request *req;
24 req = peci_xfer_get_dib(device);
25 if (IS_ERR(req))
26 return PTR_ERR(req);
34 dib = peci_request_dib_read(req);
36 peci_request_free(req);
42 peci_request_free(req);
49 struct peci_request *req;
52 req = peci_xfer_pkg_cfg_readl(device, PECI_PCS_PKG_ID, PECI_PKG_ID_CPU_ID);
53 if (IS_ERR(req))
54 return PTR_ERR(req);
56 ret = peci_request_status(req);
60 *cpu_id = peci_request_data_readl(req);
62 peci_request_free(req);
123 struct peci_request req = { 0 };
127 ret = controller->ops->xfer(controller, addr, &req);