Lines Matching refs:record
100 int record;
102 record = cxl_pcie_cfg_record(bus->number, devfn);
103 if (record > afu->crs_num)
106 *_record = record;
113 int rc, record;
124 rc = cxl_pcie_config_info(bus, devfn, afu, &record);
130 rc = cxl_ops->afu_cr_read8(afu, record, offset, &val8);
134 rc = cxl_ops->afu_cr_read16(afu, record, offset, &val16);
138 rc = cxl_ops->afu_cr_read32(afu, record, offset, &val32);
153 int rc, record;
161 rc = cxl_pcie_config_info(bus, devfn, afu, &record);
167 rc = cxl_ops->afu_cr_write8(afu, record, offset, val & 0xff);
170 rc = cxl_ops->afu_cr_write16(afu, record, offset, val & 0xffff);
173 rc = cxl_ops->afu_cr_write32(afu, record, offset, val);
272 /* If there is no configuration record we won't have one of these */