]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
of/fdt: Mark initial_boot_params as __ro_after_init
authorStephen Boyd <swboyd@chromium.org>
Tue, 14 May 2019 20:40:53 +0000 (13:40 -0700)
committerRob Herring <robh@kernel.org>
Fri, 24 May 2019 21:39:27 +0000 (16:39 -0500)
The FDT pointer, i.e. initial_boot_params, shouldn't be changed after
init. It's only set by boot code and then the only user of the FDT is
the raw sysfs reading API. Mark this pointer with __ro_after_init so
that the pointer can't be changed after init.

Cc: Hsin-Yi Wang <hsinyi@chromium.org>
Signed-off-by: Stephen Boyd <swboyd@chromium.org>
Signed-off-by: Rob Herring <robh@kernel.org>
drivers/of/fdt.c

index 918098c9f72afe6dcf28f00d8af5a661130babf6..3d36b5afd9bdff1751c18f1766551ddc69353b19 100644 (file)
@@ -516,7 +516,7 @@ EXPORT_SYMBOL_GPL(of_fdt_unflatten_tree);
 int __initdata dt_root_addr_cells;
 int __initdata dt_root_size_cells;
 
-void *initial_boot_params;
+void *initial_boot_params __ro_after_init;
 
 #ifdef CONFIG_OF_EARLY_FLATTREE