Lines Matching refs:space
19 * Device CSRs that do not appear in PCI config space should be described
23 * describe the location and size of CSR space.
65 struct csr_space *space = data;
74 space->base = addr.minimum;
75 space->length = addr.address_length;
83 struct csr_space space = { 0, 0 };
85 acpi_walk_resources(obj, METHOD_NAME__CRS, find_csr_space, &space);
86 if (!space.length)
89 *base = space.base;
90 *length = space.length;