remoteproc: stm32: Fix incorrect type assignment returned by stm32_rproc_get_loaded_r...
authorArnaud Pouliquen <arnaud.pouliquen@foss.st.com>
Wed, 17 Jan 2024 13:53:12 +0000 (14:53 +0100)
committerMathieu Poirier <mathieu.poirier@linaro.org>
Tue, 23 Jan 2024 18:48:03 +0000 (11:48 -0700)
The sparse tool complains about the remove of the _iomem attribute.

stm32_rproc.c:660:17: warning: cast removes address space '__iomem' of expression

Add '__force' to explicitly specify that the cast is intentional.
This conversion is necessary to cast to addresses pointer,
which are then managed by the remoteproc core as a pointer to a
resource_table structure.

Fixes: 8a471396d21c ("remoteproc: stm32: Move resource table setup to rproc_ops")
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
Link: https://lore.kernel.org/r/20240117135312.3381936-3-arnaud.pouliquen@foss.st.com
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
drivers/remoteproc/stm32_rproc.c

index 2c28635219ebfe38379ec0b70fcb7dc1157b3050..10b442c6f6323266bd113b500919c7ab3c11a0b3 100644 (file)
@@ -657,7 +657,7 @@ done:
         * entire area by overwriting it with the initial values stored in rproc->clean_table.
         */
        *table_sz = RSC_TBL_SIZE;
-       return (struct resource_table *)ddata->rsc_va;
+       return (__force struct resource_table *)ddata->rsc_va;
 }
 
 static const struct rproc_ops st_rproc_ops = {