Lines Matching refs:record
106 int record;
108 record = cxl_pcie_cfg_record(bus->number, devfn);
109 if (record > afu->crs_num)
112 *_record = record;
119 int rc, record;
130 rc = cxl_pcie_config_info(bus, devfn, afu, &record);
136 rc = cxl_ops->afu_cr_read8(afu, record, offset, &val8);
140 rc = cxl_ops->afu_cr_read16(afu, record, offset, &val16);
144 rc = cxl_ops->afu_cr_read32(afu, record, offset, &val32);
159 int rc, record;
167 rc = cxl_pcie_config_info(bus, devfn, afu, &record);
173 rc = cxl_ops->afu_cr_write8(afu, record, offset, val & 0xff);
176 rc = cxl_ops->afu_cr_write16(afu, record, offset, val & 0xffff);
179 rc = cxl_ops->afu_cr_write32(afu, record, offset, val);
279 /* If there is no configuration record we won't have one of these */