]> xenbits.xensource.com Git - people/andrewcoop/xen.git/commitdiff
xen/arm: static-shmem: Drop unused size_cells
authorMichal Orzel <michal.orzel@amd.com>
Mon, 3 Mar 2025 08:56:49 +0000 (09:56 +0100)
committerMichal Orzel <michal.orzel@amd.com>
Tue, 4 Mar 2025 07:54:53 +0000 (08:54 +0100)
Value stored in size_cells is never read because we're only interested
in retrieving gbase address of shmem region for which we only need
address cells.

Signed-off-by: Michal Orzel <michal.orzel@amd.com>
Reviewed-by: Bertrand Marquis <bertrand.marquis@arm.com>
xen/arch/arm/static-shmem.c

index 8f87154c3587c05774420f94d7bec1097e1dae78..c74fa13d48471bad2e8f0e015dec9ff602b468dc 100644 (file)
@@ -302,7 +302,7 @@ int __init process_shm(struct domain *d, struct kernel_info *kinfo,
         const struct membank *boot_shm_bank;
         const struct dt_property *prop;
         const __be32 *cells;
-        uint32_t addr_cells, size_cells;
+        uint32_t addr_cells;
         paddr_t gbase, pbase, psize;
         int ret = 0;
         unsigned int i;
@@ -338,7 +338,6 @@ int __init process_shm(struct domain *d, struct kernel_info *kinfo,
          * pbase is optional.
          */
         addr_cells = dt_n_addr_cells(shm_node);
-        size_cells = dt_n_size_cells(shm_node);
         prop = dt_find_property(shm_node, "xen,shared-mem", NULL);
         BUG_ON(!prop);
         cells = (const __be32 *)prop->value;