U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] mach-k3: common_fdt: Move carveout struct
@ 2025-04-10  7:55 Daniel Schultz
  2025-04-11  5:29 ` Kumar, Udit
  0 siblings, 1 reply; 2+ messages in thread
From: Daniel Schultz @ 2025-04-10  7:55 UTC (permalink / raw)
  To: trini, afd, n-francis, u-kumar1, bb, u-boot
  Cc: w.egorov, upstream, Daniel Schultz

Labels are not allowed before declarations. Move the carveout struct
at the beginning and only update 'end' at this point.

This will fix following error:

arch/arm/mach-k3/common_fdt.c: In function 'fdt_fixup_reserved':
arch/arm/mach-k3/common_fdt.c:156:2: error: a label can only be part of a statement and a declaration is not a statement
  156 |  struct fdt_memory carveout = {
      |  ^~~~~~
make[1]: *** [scripts/Makefile.build:256: arch/arm/mach-k3/common_fdt.o] Error 1
make: *** [Makefile:1919: arch/arm/mach-k3] Error 2

Fixes: 096aa229a9e ("mach-k3: common_fdt: create a reserved memory node")

Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
---
Changes in v2:
  * Moved carveout struct at the beginning instead of adding an dummy statement.

 arch/arm/mach-k3/common_fdt.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/arch/arm/mach-k3/common_fdt.c b/arch/arm/mach-k3/common_fdt.c
index 361b0c0b31b..9437b923d49 100644
--- a/arch/arm/mach-k3/common_fdt.c
+++ b/arch/arm/mach-k3/common_fdt.c
@@ -119,6 +119,10 @@ int fdt_fixup_reserved(void *blob, const char *name,
 {
 	int nodeoffset, subnode;
 	int ret;
+	struct fdt_memory carveout = {
+		.start = new_address,
+		.end = new_address + new_size - 1,
+	};
 
 	/* Find reserved-memory */
 	nodeoffset = fdt_subnode_offset(blob, 0, "reserved-memory");
@@ -153,10 +157,7 @@ int fdt_fixup_reserved(void *blob, const char *name,
 	}
 
 add_carveout:
-	struct fdt_memory carveout = {
-		.start = new_address,
-		.end = new_address + new_size - 1,
-	};
+	carveout.end = new_address + new_size - 1;
 	ret = fdtdec_add_reserved_memory(blob, name, &carveout, NULL, 0, NULL,
 					 FDTDEC_RESERVED_MEMORY_NO_MAP);
 	if (ret < 0)
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v2] mach-k3: common_fdt: Move carveout struct
  2025-04-10  7:55 [PATCH v2] mach-k3: common_fdt: Move carveout struct Daniel Schultz
@ 2025-04-11  5:29 ` Kumar, Udit
  0 siblings, 0 replies; 2+ messages in thread
From: Kumar, Udit @ 2025-04-11  5:29 UTC (permalink / raw)
  To: Daniel Schultz, trini, afd, n-francis, bb, u-boot; +Cc: w.egorov, upstream


On 4/10/2025 1:25 PM, Daniel Schultz wrote:
> Labels are not allowed before declarations. Move the carveout struct
> at the beginning and only update 'end' at this point.
>
> This will fix following error:
>
> arch/arm/mach-k3/common_fdt.c: In function 'fdt_fixup_reserved':
> arch/arm/mach-k3/common_fdt.c:156:2: error: a label can only be part of a statement and a declaration is not a statement
>    156 |  struct fdt_memory carveout = {
>        |  ^~~~~~
> make[1]: *** [scripts/Makefile.build:256: arch/arm/mach-k3/common_fdt.o] Error 1
> make: *** [Makefile:1919: arch/arm/mach-k3] Error 2
>
> Fixes: 096aa229a9e ("mach-k3: common_fdt: create a reserved memory node")
>
> Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
> ---
> Changes in v2:
>    * Moved carveout struct at the beginning instead of adding an dummy statement.
>
>   arch/arm/mach-k3/common_fdt.c | 9 +++++----
>   1 file changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/arch/arm/mach-k3/common_fdt.c b/arch/arm/mach-k3/common_fdt.c
> index 361b0c0b31b..9437b923d49 100644
> --- a/arch/arm/mach-k3/common_fdt.c
> +++ b/arch/arm/mach-k3/common_fdt.c
> @@ -119,6 +119,10 @@ int fdt_fixup_reserved(void *blob, const char *name,
>   {
>   	int nodeoffset, subnode;
>   	int ret;
> +	struct fdt_memory carveout = {
> +		.start = new_address,
> +		.end = new_address + new_size - 1,

I think there is no need of assigning end here. As final value is 
updated at last.

With this change

Reviewed-by: Udit Kumar <u-kumar1@ti.com>


> +	};
>   
>   	/* Find reserved-memory */
>   	nodeoffset = fdt_subnode_offset(blob, 0, "reserved-memory");
> @@ -153,10 +157,7 @@ int fdt_fixup_reserved(void *blob, const char *name,
>   	}
>   
>   add_carveout:
> -	struct fdt_memory carveout = {
> -		.start = new_address,
> -		.end = new_address + new_size - 1,
> -	};
> +	carveout.end = new_address + new_size - 1;
>   	ret = fdtdec_add_reserved_memory(blob, name, &carveout, NULL, 0, NULL,
>   					 FDTDEC_RESERVED_MEMORY_NO_MAP);
>   	if (ret < 0)

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-04-11  5:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-10  7:55 [PATCH v2] mach-k3: common_fdt: Move carveout struct Daniel Schultz
2025-04-11  5:29 ` Kumar, Udit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox