aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/of_fdt.h
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2014-03-31 15:25:04 -0500
committerRob Herring <robh@kernel.org>2014-04-30 00:59:19 -0500
commit1daa0c4ced334f18f458aba6ace7e01e8cdc2ecf (patch)
tree7cdd406df8cb30c414da0b5107e04d5c8c479ce7 /include/linux/of_fdt.h
parentx86: use FDT accessors for FDT blob header data (diff)
downloadlinux-dev-1daa0c4ced334f18f458aba6ace7e01e8cdc2ecf.tar.xz
linux-dev-1daa0c4ced334f18f458aba6ace7e01e8cdc2ecf.zip
of/fdt: convert initial_boot_params to opaque pointer
Now that all accesses to FDT header data has been converted to accessor helpers, initial_boot_params can become an opaque pointer. Signed-off-by: Rob Herring <robh@kernel.org> Tested-by: Michal Simek <michal.simek@xilinx.com> Tested-by: Grant Likely <grant.likely@linaro.org> Tested-by: Stephen Chivers <schivers@csc.com>
Diffstat (limited to 'include/linux/of_fdt.h')
-rw-r--r--include/linux/of_fdt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/of_fdt.h b/include/linux/of_fdt.h
index e10099c95999..1f882e1da728 100644
--- a/include/linux/of_fdt.h
+++ b/include/linux/of_fdt.h
@@ -78,7 +78,7 @@ extern void of_fdt_unflatten_tree(unsigned long *blob,
/* TBD: Temporary export of fdt globals - remove when code fully merged */
extern int __initdata dt_root_addr_cells;
extern int __initdata dt_root_size_cells;
-extern struct boot_param_header *initial_boot_params;
+extern void *initial_boot_params;
extern char __dtb_start[];
extern char __dtb_end[];