]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
xtensa: annotate dtb_start variable as static __initdata
authorMasahiro Yamada <masahiroy@kernel.org>
Wed, 18 Sep 2024 03:15:34 +0000 (12:15 +0900)
committerMax Filippov <jcmvbkbc@gmail.com>
Mon, 9 Dec 2024 11:54:11 +0000 (03:54 -0800)
The 'dtb_start' variable is only used within arch/xtensa/kernel/setup.c.
Mark it as 'static'.

It is only used by parse_tag_fdt() and init_arch(), both of which are
annotated as __init. Therefore, dtb_start can be annotated as __initdata,
so it will discarded after boot.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Message-Id: <20240918031537.588965-1-masahiroy@kernel.org>
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
arch/xtensa/kernel/setup.c

index bdec4a773af098f3533c124f6d2a20cd5be731be..3e076b64cc611c86b6dc61552e61f0c52b5233ff 100644 (file)
@@ -55,7 +55,7 @@ extern int initrd_below_start_ok;
 #endif
 
 #ifdef CONFIG_USE_OF
-void *dtb_start = __dtb_start;
+static void *dtb_start __initdata = __dtb_start;
 #endif
 
 extern unsigned long loops_per_jiffy;